ذريعات وڪي:Gadget-search-new-tab.js: جي ورجائن ۾ تفاوت

ڊاٿل مواد شامل ڪيل مواد
نئون صفحو: // Open search in new tab by User:Timeshifter ←‏global:$: ←‏jshint-valid: $(function () { $('#searchform, #searchbox, #search, .search-types, #search-types, #powers...
 
(ڪو بہ تفاوت ڪونھي)

تازو-ترين ترين ورجاءُ بمطابق 21:09, 2 مارچ 2019ع

// 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' : '');
	});
});