Created
September 7, 2011 20:31
-
-
Save nikku/1201643 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href="#" rel="alert4" class="open-dialog2">decide on my favourite button color!</a> | |
| <div id="alert4"> | |
| <h1>Decision</h1> | |
| <p>Decide on an option</p> | |
| <div class="actions"> | |
| <a class="btn info" href="#">Info</a> | |
| <a class="btn success" href="#">Success</a> | |
| <button class="danger">Danger</button> | |
| <button class="dialog-close">Close</button> | |
| </div> | |
| </div> | |
| <script type="text/javascript"> | |
| $(function() { | |
| $("#alert4 .actions > *").click(function() { | |
| alert("You chose " + $(this).text()); | |
| }); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment