Tag: Jquery
How to display a page in a modal window popup
In this post we will tell you about method of using Modal box to display a complete .HTML file in Modal box rather opening it in new window or tab. There are a few different ways to do this, but the best way is to use an AJAX request to the page using. Jquery: Then…
Scaling Images With Jquery (Resize Image on Hover)
Using only JQuery you can use the hover() listener for mouseenter and mouseleave events and manage the CSS properties also with JQuery using css() method. For scaling an element you can use the CSS transition in conjunction with transform: scale(<some_number>) properties. Check next example for better understanding: HTML : Javascript/Jquery: Output: