MediaWiki:Common.js: Difference between revisions

From Opasnet
Jump to navigation Jump to search
(Blanked the page)
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('	','','');
  } 
});

});