Team:UT Dallas/page js

From 2013.igem.org

(Difference between revisions)
Line 24: Line 24:
function change_color()
function change_color()
{
{
-
   alert($(this));
+
   console.log($(this));
   $("#project_links > li").css('color','#000000');
   $("#project_links > li").css('color','#000000');
   $(this).css('color','#ff7200');
   $(this).css('color','#ff7200');
}
}

Revision as of 01:25, 28 September 2013

function show_info(res_id) { $.get('https://2013.igem.org/Team:UT_Dallas/'+res_id+'?action=raw&ctype=text/html', function(data) { $('#result_space').fadeOut('fast', function() { $('#result_space').html(data); $('#result_space').fadeIn(); });

}); return false; }

function getData(fname) {

       $('#results').hide("slide", { direction: "right" }, 250);
   	$.get("https://2013.igem.org/Team:UT_Dallas/"+fname+"?action=raw&ctype=text/x-wiki", function(data) {

$('#results').html(data); $('#results').show("slide", { direction: "left" }, 250); });

       return false;

}

function change_color() {

 console.log($(this));
 $("#project_links > li").css('color','#000000');
 $(this).css('color','#ff7200');

}