Solution for javascript:history.go(-1) with fancy box iFrame
I have build a website for job apply.
digimobjobs.com
when click job 'apply direct' working as fancybox iFrame. after closing iFrame box. back button needs to click twice instead of one
I'm using javascript to go back
javascript:history.go开发者_StackOverflow中文版(-1)
I need to keep javascript:history to GET data
any one help me please
Your link is giving an Internal Server Error.
Instead of "going back" you should probably use Javascript to redirect it to that previous page. Try this, replacing it with the name of the page you want to go to:
javascript:window.location="twostepsback.html";
精彩评论