Thursday, 13 December 2018

javascript - Get browser to redirect window from modalized content



I have content in a modalized window, and when a user clicks a link, I'd like to have the entire browser redirect, not just the modal window. This doesn't work, unfortunately.



Code I currently have:




morestuff!


This only loads the url in the modal window. What can I do to get the whole window to load said url?


Answer



Something like this should work:



morestuff!


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...