MediaWiki:Gadget-search-new-tab.js: Difference between revisions

From Seeds of the Word, the encyclopedia of the influence of the Gospel on culture
(Per talk page)
 
m (1 revision imported)
 
(No difference)

Latest revision as of 20:27, August 30, 2020

// Open search in new tab by [[User:Timeshifter]]

/* global:$ */
/* jshint-valid */
$(function () {
	$('#searchform, #searchbox, #search, .search-types, #search-types, #powersearch').on('keyup keydown mousedown', function(e) {
		$(this).attr('target', e.ctrlKey || e.metaKey ? '_blank' : '');
	});
});