jquery

this is a test of the javascript library jquery on wikidot

  <script src="http://rhombusproductions.wikidot.com/local--files/sandbox:jquery/jquery.js"></script>
 
<p style="opacity:.33;width: 100%;height: 50px; background-color: #f00;text-align:center;">
Hover over this to see it fade in
</p>
<p style="opacity:.33;width: 100%;height: 50px; background-color: #f00;text-align:center;">
Hover over this to see it fade in
</p>
<p style="opacity:.33;width: 100%;height: 50px; background-color: #f00;text-align:center;">
Hover over this to see it fade in
</p>
<p style="opacity:.33;width: 100%;height: 50px; background-color: #f00;text-align:center;">
Hover over this to see it fade in
</p>
<p style="opacity:.33;width: 100%;height: 50px; background-color: #f00;text-align:center;">
Hover over this to see it fade in
</p>
 
<script>
$("p") .mouseout(function (){
$(this).fadeTo("slow", 0.33);
});
$("p").mouseover(function () {
$(this).fadeTo("slow", 1);
});
</script>

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License