javascript - Clicking a button does something similar to "forward" in table -
i have code in content script traverses table finding cell , wraps button around cell. created jquery click command:
$(this).click(function(){ (var = 0 ; <result.length; i++) { window.open(result[i].url) }; });
which open url on click. now, when click button in table url/urls open in new tab, but, change current frame this:
not found requested url /ban2p/bwskfreg.p_altpin1 not found.
which happens when right clicking webpage , clicking "forward".
does know going on? have no clue fix this. can provide more information if it's necessary.
this because not appending rest of url.
you trying open /ban2p/bwskfreg.p_altpin1
not valid url because missing domain name.
try http://www.yourdomainname.com/ban2p/bwskfreg.p_altpin1
Comments
Post a Comment