[jQuery] JQUERY.EASING
[jQuery] JQUERY.EASING
Hi there, a noob question here! How do I call easing functions in the
following?
I basically want the divs to bounce open and closed. this is the code
for 1 div and 1 button...say i have 6 buttons and 6 divs do i need to
just make 6 copies of the code all with different ids?
please help!!!
jax
<script src="http://code.jquery.com/jquery-latest.js" type="text/
javascript"></script>
<script language="JavaScript" src="jquery_easing.js" type="text/
javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
//slide functions
$("#projectopen").click(function () { // When projects open button
clicked
$("#projects").slideDown();({ //slide in
});
});
$("#projectclose").click(function () { // When projects closed
$("#projects").slideUp("slow"); //slide out
});
});
</script>