MediaWiki:Common.js: Difference between revisions

From Opasnet
Jump to navigation Jump to search
No edit summary
(Blanked the page)
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