Image Hyperlink to open in same window for Landing Pages | Community
Skip to main content
August 5, 2014
Question

Image Hyperlink to open in same window for Landing Pages

  • August 5, 2014
  • 1 reply
  • 916 views
Hello,

Does anyone know how to set an image hyperlink to open in the same window for landing pages? I want my landing page to feel like our website and when an image is clicked, it takes you to the appropriate link in the same window. Currently, anytime an image is clicked, the URL is opened in a new window. 

Thanks!
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

August 5, 2014
Either with javascript (below) or by setting a page default. Or in every indivicual link by adding target="_top" or target="_self". Documentation on base target: http://www.w3schools.com/tags/att_base_target.asp





var a = document.getElementsByTagName(
"a");
for (i=0;i<a.length;i++) {

        if (a[i].target="_blank") {
            a[i].target="_self"
        }
                        
}