javascript pop up off of menu

They have: 2 posts

Joined: Sep 2001

Help! Im currently in the final stages of designing a site and ive created a drop down menu for one of th pages and i need the links to pop up in individual windows, which i can define sizes for. any help or decent links would be greatly appreciated, thanks.

kris

They have: 67 posts

Joined: Aug 2001

check this link, it may be what you are looking for

http://javascript.internet.com/generators/popup-window.html

it's the easiest way to make popup windows.

good luck

designready.co.uk

flexible, low-cost, easy to use websites, with easy Site Editor, unlimited pages, and multiple choice of designs and colours. our websites are ideal for small businesses, and personal homepages.

They have: 7 posts

Joined: Oct 2001

<script language="JavaScript">

function changePage()
{
var f = document.forms.name;

var uri = f.pages.options[f.pages.selectedIndex].value;
newPage =
// These settings describe the pop-up browser
// window - you can edit them.
window.open(uri,"NewPage","height=200,width=300,location=no,scrollbars=no,menubar=no,toolbar=no,resizable=yes,status=no");

}

</script>

Page 1
Page 2
Page 3

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.