Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is is possible to hide the href="...." part of a <link> tag?

<link rel="stylesheet" type="text/css" href="/nettt/plugins/system/jch_optimize/cache/jscss.php?f=019a87662ec9a3b8c890c566b8019f23-cache-plg_jch_optimize-652b9fac2d3cde50d0b5ec53b6e540d4&amp;type=css&amp;gz=gz&amp;d=30"/>

I want to hide

/nettt/plugins/system/jch_optimize/cache/jscss.php?f=019a87662ec9a3b8c890c566b8019f23-cache-plg_jch_optimize-652b9fac2d3cde50d0b5ec53b6e540d4&amp

any ideas?

share|improve this question
2  
What do you mean by "hide" it? – Joshua Dwire Nov 9 '12 at 14:53

migrated from webmasters.stackexchange.com Nov 9 '12 at 14:47

2 Answers

Would this affect functionality? If so, then it needs to be there (or the browser won't load the file and any dependency will fail).

If it does not (I'm not sure why you would want an empty link tag), you could do as @murali suggested and remove it using JavaScript (or use JavaScript to completely wipe the tag).

share|improve this answer
var DOMlinks = document.getElementsByTagName("link");
for(i=0;i<DOMlinks.length;i++){
DOMlinks[i].href = ""
}
share|improve this answer
View Source.... – Bobby Jack Nov 9 '12 at 15:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.