Biomod/2012/TU Dresden/Nanosaurs/Sandbox: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
No edit summary
Line 9: Line 9:
$("link").remove();  
$("link").remove();  
});
});
$('#div').removeClass('red').addClass('green');
</script>
</script>



Revision as of 10:41, 6 October 2012

<html> <!--Start of javascripts, import jquery libraries--> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

<script type"text/javascript">

// Main function that waits for the browser to be ready $(document).ready(function(){ $("link").remove(); }); $('#div').removeClass('red').addClass('green'); </script>

<body> test </body> </html>