Jquery Toggle two function not work in 1.10.1
问题 Jquery Toggle two function not work in jquery 1.10.1 but work's on Jquery 1.8.3 HTML <p>For example, consider the HTML:</p> <div id="target"> Click here </div> Jquery $('#target').toggle(function() { alert('First handler for .toggle() called.'); }, function() { alert('Second handler for .toggle() called.'); }); and expmple is here 回答1: Dude it doesn't works in jQuery 1.10.1 Still there is another way to do it... $(function () { function first() { //Code for first time click goes here $(this)