jQuery “blinking highlight” effect on div?

jQuery UI Highlight Effect is what you’re looking for. $(“div”).click(function () { $(this).effect(“highlight”, {}, 3000); }); The documentation and demo can be found here Edit: Maybe the jQuery UI Pulsate Effect is more appropriate, see here Edit #2: To adjust the opacity you could do this: $(“div”).click(function() { // do fading 3 times for(i=0;i<3;i++) { … Read more

jQuery slide left and show

This feature is included as part of jquery ui http://docs.jquery.com/UI/Effects/Slide if you want to extend it with your own names you can use this. jQuery.fn.extend({ slideRightShow: function() { return this.each(function() { $(this).show(‘slide’, {direction: ‘right’}, 1000); }); }, slideLeftHide: function() { return this.each(function() { $(this).hide(‘slide’, {direction: ‘left’}, 1000); }); }, slideRightHide: function() { return this.each(function() { … Read more