What am I doing wrong?
- Only on pages with the URL location of "/MyWebsite/Example.aspx" append "?template=PW"
- But only to links that contain "/HelloWorld/default.aspx"
There is no ID or classes associated to this link, so I have to look for the URL.
This is my code, but the links are not updating.. I know I'm close!
$(document).ready(function(){
if (document.location.href.indexOf('/MyWebsite/Example.aspx') > 0)
{
$('a[href*="/HelloWorld/default.aspx"]').append("href",$("?template=PW"))
}
});