MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 5: | Line 5: | ||
{ | { | ||
console.log("Hello World"); | console.log("Hello World"); | ||
$(" | $("a").each(function(){ | ||
console.log($(this)); | console.log($(this)); | ||
if(jQuery.type($(this).attr("crd")) == "string" | if(jQuery.type($(this).attr("crd")) == "string" | ||
Revision as of 08:09, 1 February 2018
/* Any JavaScript here will be loaded for all users on every page load. */
//JSCode to change the 'span' tags generated by SafeMailTo into 'a' tags
$(function()
{
console.log("Hello World");
$("a").each(function(){
console.log($(this));
if(jQuery.type($(this).attr("crd")) == "string"
&& $(this).attr("crd").length > 0
&& jQuery.type($(this).attr("cru")) == "string"
&& $(this).attr("cru").length > 0)
{
console.log($(this));
}
});
}());