/ Published in: JavaScript
Update: Fixed a bug at the basic click() function.
Expand |
Embed | Plain Text
$(document).ready(function(){ /* Elements Visibility /////////////////////////////////////////////////////////////////*/ $('.element').hide(); /* Elements Functionality /////////////////////////////////////////////////////////////////*/ $('.element').click(function(){ return false; }); $('.element').mouseout(function(){ } }); $('.element').mouseover(function(){ } }); });
You need to login to post a comment.
