Javascript confirmation window

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Gaurav Jhamb
    New Member
    • Mar 2008
    • 8

    Javascript confirmation window

    I have one confirm window using javascript. Now I just make changes that when i click on OK button on this window new confirmation window should be open. How I will do this. Please help me.

    Thanx
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5390

    #2
    the confirm returns you boolean values depending on the click:

    [CODE=javascript]if (window.confirm ('click ok to get the next confirm')) {
    window.confirm( 'this is the next confirm');
    }[/CODE]

    kind regards

    Comment

    Working...