I have dynamic website pages that get products details from database by using GET Method. But problem is that user can't open products listings in new tab of browser. Its just open in same/current browser's tab as there is no option is available in right click menu as "Open in new tab". Any solution please?? Exp:
<form id="form" name="form" action='productdetails.php' method='GET'>
<input name="search" value="<?=$row['ID']?>" type="hidden"></input>
<input type="image" src="http://website.com/products/<?=$row['picture']?>.jpg"></input>
</form>
Now if someone click at image/picture, then "www.website.com/productdetails.php?search=proudcutid" will open in same browser tab. but if he make right click on image and try to open product listing in new tab, he can't as there is no option of "Open in new tab" in right click menu. I don't want to use _blank as its always open in new browser tab that might be annoying users. Check this link: http://www.shajam.net/msweaters.php`