Hello, I am using an achor in a self referencing php script so that after the user clicks an image, the page is returned to a particular point in the page. This works great unless the same image is clicked twice, in which case the click (a $_GET) is totally ignored!
For example here is the link once the image is selected
Code: Select all
http://localhost/web/webplus_php/ws_board_design.php?sel_image_link=tb_sm_CIMG1207.gif&lib=hank#4509
so on clicking it the first time it works fine, but if I use it a second time nothing happens. However if I press F5, the process works fine. Also if I remove the anchor, so that the link is just
Code: Select all
http://localhost/web/webplus_php/ws_board_design.php?sel_image_link=tb_sm_CIMG1207.gif&lib=hank
I can click the image twice in a row no problem.
Does anyone have any clue as to why this should be happening?