Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

User:HashJona/common.js: Difference between revisions

From Growtopia Wiki
mNo edit summary
No edit summary
Line 1: Line 1:
$(function() {
$(function() {
     $("span.no-blank-traget").each(function() {
     $("span.no-blank-target").each(function() {
     $(this).closest("a").removeAttr("target");
     $(this).closest("a").removeAttr("target");
     });
     });
});
});

Revision as of 11:28, 9 March 2025

$(function() {
    $("span.no-blank-target").each(function() {
    	$(this).closest("a").removeAttr("target");
    });
});