Chrome Dev Tool Debugger with JsFiddle
Chrome Dev Tool Debugger with JsFiddle
by limd
HTML
<button id="pause">Click me to see this feature</button>
<p>Don't forget to open Chrome Dev Tools before clicking the above button ;)</p>
JavaScript
$('#pause').on('click', function () {
debugger;
$(this).text('clicked');
alert('Is this cool feature? ;)');
});