Pop Up
-
1.How to pop up a window in web application ? i have written a function like this : function openpopup(popurl) { var winpops = window.open (popurl,"","width 700, height = 400,toolbar = 0,status = 1 ,resizeable = 1, scrollbar = 1 ") } where should i call this function ?
-
1.How to pop up a window in web application ? i have written a function like this : function openpopup(popurl) { var winpops = window.open (popurl,"","width 700, height = 400,toolbar = 0,status = 1 ,resizeable = 1, scrollbar = 1 ") } where should i call this function ?
Depends, where do you want to see a popup ?
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
Depends, where do you want to see a popup ?
Christian Graus - Microsoft MVP - C++ "also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
-
when i click a button i want to see the popup and also when i minimise the page if any message/ data is send to the page the page should be popped up
Aparna.B wrote:
when i click a button
onClick
of the buttonAparna.B wrote:
when i minimise the page
onBlur
of the windowVasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
Aparna.B wrote:
when i click a button
onClick
of the buttonAparna.B wrote:
when i minimise the page
onBlur
of the windowVasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson -
Check out some examples here: http://www.w3.org/TR/html401/interact/scripts.html[^]
Vasudevan Deepak Kumar Personal Homepage
Tech Gossips
A pessimist sees only the dark side of the clouds, and mopes; a philosopher sees both sides, and shrugs; an optimist doesn't see the clouds at all - he's walking on them. --Leonard Louis Levinson