[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