<script type="text/JavaScript" src="../jquery-1.4.2.min.js"></script>
<script type="text/JavaScript" src="../jquery-1.4.2.min.js"></script>
<script type="text/JavaScript"> $(document).ready(function(){ $('<input type="button" value="remove" id="removeButton">').insertAfter('#container'); $('p').html('good bye, cruel paragraphs!'); $('h2').text('All your titles are belong to us'); $("#removeButton").click(function(){ $('p').fadeOut(); $('h2').fadeOut(); }); $("#removeButton").click(function(){ $('p').fadeIn(); $('h2').fadeIn(); }); }); </script>
|