Javascript modal dialog title problem

This is a discussion on "Javascript modal dialog title problem" within the JavaScript Forum section. This forum, and the thread "Javascript modal dialog title problem are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > JavaScript Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old May 25th, 2007, 07:19
New Member
Join Date: May 2007
Location: india
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Javascript modal dialog title problem

Hi I am facing a problem with setting the modal window title..

source of 1.html

PHP: Select all

<html>
    <
head>
        <
script language="javascript">
            function 
openNewWin() {
                
window.showModalDialog("2.html"self"status: Yes;dialogWidth:500px;dialogHeight:400px");
            }
        
</script>
    </head>
    <body onLoad="openNewWin();">
    </body>
</html
source of 2.html

PHP: Select all

<html>
    <
head>
        <
script language="javascript">
        
window.document.title "Nitin"
            
if (window.dialogArguments) {
                
window.opener window.dialogArguments;
            }
            function 
setTitle() {
                
document.title "NewTitle"
                
alert(document.title)

            }
        
</script>
    </head>
    <body>
    <input type="button" value="Change title" onClick="setTitle();">
    </body>
</html
I run 1.html file and click on button to change the title in alert it shows the updated title but the title bar value is not updated.

Can anyone help
Reply With Quote

  #2 (permalink)  
Old May 25th, 2007, 17:56
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 22
Posts: 1,619
Blog Entries: 1
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via ICQ to spinal007 Send a message via MSN to spinal007 Send a message via Yahoo to spinal007 Send a message via Skype™ to spinal007
Re: Javascript modal dialog title problem

sorry mate, can't help you there.
The code seems perfectly OK.
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
  #3 (permalink)  
Old May 27th, 2007, 05:21
New Member
Join Date: May 2007
Location: india
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Javascript modal dialog title problem

Its a bug

http://support.microsoft.com/kb/263033
Reply With Quote
  #4 (permalink)  
Old May 27th, 2007, 12:24
spinal007's Avatar
Moderator
Join Date: Mar 2004
Location: Good Ol'London
Age: 22
Posts: 1,619
Blog Entries: 1
Thanks: 0
Thanked 2 Times in 2 Posts
Send a message via ICQ to spinal007 Send a message via MSN to spinal007 Send a message via Yahoo to spinal007 Send a message via Skype™ to spinal007
Re: Javascript modal dialog title problem

Well done for working it out and thanks for sending the solution (may help others with the same problem)
Last Blog Entry: Random String in Javascript (Apr 21st, 2008)
Reply With Quote
  #5 (permalink)  
Old May 28th, 2007, 03:58
New Member
Join Date: May 2007
Location: india
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Javascript modal dialog title problem

there is no solution with client side script
Only using server-side script like ASP the title can be updated
Reply With Quote
Reply

Tags
dialog, modal, title

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Javascript menu - does not work on title page, but does work on other pages Crystal Phoenix Starting Out 4 Mar 24th, 2008 19:40
<title>Tennis London : Tennis History</title> how should it read Oak Search Engine Optimization (SEO) 5 Feb 6th, 2008 01:31
confirm dialog not working properly in IE... thenamenoonehastaken JavaScript Forum 1 Jan 24th, 2008 04:24
problem with JavaScript and JSP pesho318i JavaScript Forum 0 Jan 23rd, 2008 18:04


All times are GMT. The time now is 22:36.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43