/    Sign up×
Community /Pin to ProfileBookmark

Scripting – Opening links from main site into same new page

Just a quick question on scripting. I’m not to sure if it belongs in a Javascript forum so I apologise in advance if its not 😮

I have designed the main page for a website. All the menu buttons on the main page that link to the various pages of the website (ie home, store, contact etc) each open in a new browser window when clicked. Now I am wondering if the following is possible….

Can I make them all open in the same new window? (ie if I was to click on ‘home’ the home page would open in a new browser window, then if I was to click on ‘store’ the store page would open in the new window that the ‘home’ paged had just opened in before).

Any help would be appreciated ?

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@Mr_JOct 03.2006 — You could use something like this


[code=php]<script type="text/javascript">
<!--
function openWindow(url){
newWin = open(url,'mywin','width=600,height=600,top=100,left=100' )
}

return false
//-->
</script>

<a href="home.htm" onclick="return openWindow(this.href)">Home</a>
<a href="store.htm" onclick="return openWindow(this.href)">Store</a>
<a href="contact.htm" onclick="return openWindow(this.href)">Contact</a>[/code]
×

Success!

Help @realgrafik spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...