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.

check demo

you trying open /ban2p/bwskfreg.p_altpin1 not valid url because missing domain name.

try http://www.yourdomainname.com/ban2p/bwskfreg.p_altpin1


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -