Title Bar IE

e85andyou

New Member
Messages
49
Reaction score
0
Points
0
I have a form that opens a popup window the code is below. I wish to offer this code to other sites but in the title bar it displays my website then the title of the form. Is there a code that would allow me to remove my site information from the title bar.

Example in IE www mydomain com - This is my site

I would like it to say This is my site without the domain link



Code:
<script type="text/javascript">
function openWin(zip, radius) {
    window.open(" Address ", '_blank', "width = 400px, height = 300px, scrollbars = yes, toolbar= no, location= no, menubar= no");
    return false;
}
</script>
 
Last edited:

leafypiggy

Manager of Pens and Office Supplies
Staff member
Messages
3,819
Reaction score
163
Points
63
it seems as though it will automagicly get your code. have you tested it somewhere else?
 

flashcreations

New Member
Messages
5
Reaction score
0
Points
0
Try testing this on other sites. You might notice that IE adds the Website's address to the beginning of the popup. Test it out on another site.
 
Top