Skip to content

Instantly share code, notes, and snippets.

@nikku
Created September 7, 2011 20:31
Show Gist options
  • Select an option

  • Save nikku/1201643 to your computer and use it in GitHub Desktop.

Select an option

Save nikku/1201643 to your computer and use it in GitHub Desktop.
<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