Skip to content

Instantly share code, notes, and snippets.

@RedWolves
Created January 11, 2012 01:04
Show Gist options
  • Save RedWolves/1592296 to your computer and use it in GitHub Desktop.
Save RedWolves/1592296 to your computer and use it in GitHub Desktop.
Yay Contextual
$("#product-links").delegate("a", "click", function(e) {
e.preventDefault();
var $this = $(this),
$id = $($this.attr("href"));
if ($id.is(":not(.ui-dialog)")) {
$id.dialog({
modal: true,
width: 540
});
} else {
$id.dialog("open");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment