Click here to Skip to main content
15,880,796 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
On mouse hover div is re-sizing to 41% but on button click its not re-sizing back to 60%



$('#stop').click(function () {
      $("#div").css("width", "60%");
  });


  $("#right").on({    // this is working
      mouseenter: function () {
          $("#div").css("width","41%");
      }
  });
Posted
Updated 8-Sep-15 22:40pm
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900