Revision: 53081
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 13, 2011 01:19 by Barlon
Initial Code
function(evt) {
evt.preventDefault();
};
$('#myLink').click(function(evt){
evt.preventDefault();
$('#myLink').dialog('open');
});
Initial URL
Initial Description
Stop default behaviour from happening. In the second example we open a jQuery UI dialog instead of going to a different url when clicking on an A-tag with an id of "myLink".
Initial Title
Prevent default behaviour
Initial Tags
Initial Language
JavaScript