I've got a page with many href links that open content within the frame (page does not reload, url remains the same, just new content). The problem I'm running into is that, since they are "href"s, the browser gives the option to open in a new tab/window on right click. But the response content is not designed to stand as its own page because it's supposed to be opened within the current frame.
Is there a way, for when the user wants to open in a new tab/window, to also include the current url first so that the href link functions correctly in the new tab/window? Hopefully I'm making sense.
One solution I'm exploring is to not use hrefs at all and just use jQuery to run the GET so that there isn't even an option to open in a new tab/window. But this would require a lot of changes to the current code, so I'm holding off for now.