[Solved] rocking effect in jquery? [closed]

Is this what you are looking for? http://docs.jquery.com/UI/Effects/Shake You need of course to include jQuery UI, or at least parts of it. EDIT: After your elaboration, I think you are looking to animate the rotation, which can be done with CSS3. http://www.the-art-of-web.com/css/css-animation/ You can animate the position as well, if that helps you. 1 solved … Read more

[Solved] Javascript not working with jquery library 1.9.1

FIRST, try this JAVASCRIPT – Part 1 $(document).ready(function () { $(‘a.head’).click(function () { var a = $(this); var section = a.attr(‘href’); section.removeClass(‘section’); $(‘.section’).hide(); section.addClass(‘section’); if (section.is(‘:visible’)) { section.slideToggle(); /* ===== <– 400 is the default duration ===== */ } else { section.slideToggle(); } }); }); JAVASCRIPT – PART 2 $(document).ready(function () { $(‘.rate_widget’).each(function () { … Read more

[Solved] Creating first jQuery slideshow plugin, converting from Javascript

You can use nivo slider . You just have to mention description of an image in alt attribute and title of an image in title attribute. And just attach the plugin to your wrapper element: $(window).load(function() { $(‘#main’).nivoSlider(); }); Edit1: A simple way to create such plugin jQuery.fn.imgSlider = function( options ) { // default … Read more