MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Juha Villman (talk | contribs) (Blanked the page) |
Juha Villman (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
$j(document).ready( function() { | |||
$j('#wpTextbox1').live('keydown', function(e) { | |||
var keyCode = e.keyCode || e.which; | |||
if (keyCode == 9) { | |||
e.preventDefault(); | |||
// call custom function here | |||
insertTags(' ','',''); | |||
} | |||
}); | |||
}); |
Revision as of 13:05, 16 January 2014
$j(document).ready( function() {
$j('#wpTextbox1').live('keydown', function(e) {
var keyCode = e.keyCode || e.which;
if (keyCode == 9) {
e.preventDefault();
// call custom function here
insertTags(' ','','');
}
});
});