Jump to content

Jquery Animation Need Help


Newbie2772

Recommended Posts

Hi guys,

 

So I set up a few boxes on a page and want a random one to disappear whenever any box is clicked on. I am a little rusty and was never that good at coding so this is just for fun/practice.

 

My divs are set up as having id's square(1-18)

 

My jquery code is:

$(document).ready(function() {   $("div").mouseenter(function() {       $(this).animate({           height: '+=50px',           width: '+=50px',           fontSize: '+=100px'});   });   $("div").mouseleave(function() {       $(this).animate({           height: '-=50px',           width: '-=50px',           fontSize: '-=100px'       });    });   var num = math.floor(math.random() * 18) + 1;   var n = num.toString();   var sEvent = "'" + "#" + "square" + n +"'";   $("div").click(function() {       $(sEvent).toggle(400);   }); });

the first 2 sections work fine but I cant get my click function to work properly. Please let me know your thoughts!

Edited by Newbie2772
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...