Note: Forums will be making significant UX changes to address key usability improvements surrounding search, discoverability and navigation. To learn more about these changes please visit the announcement which can be found HERE.
prevent this page from creating additional dialogs

Answered prevent this page from creating additional dialogs

  • Wednesday, January 04, 2012 11:17 AM
     
     
    hi,
    I have 3 divs here.. how to "prevent this page from creating additional dialogs" programatically. 
    <head>
    <script type="text/javascript">
    function alert1()
    {
    alert("hello1");
    }
    function alert2()
    {
    alert("hello2");
    }
    function alert3()
    {
    alert("hello3");
    }
    </script>
    </head>
    <body>
    <div onclick="alert1()">
    <div onclick="alert2()">
    <div onclick="alert3()">
    test
    </div>
    </div>
    </div>
    </body>
    </html>

All Replies