Skip to content

Instantly share code, notes, and snippets.

@msmithstubbs
Created April 30, 2013 19:32
Show Gist options
  • Select an option

  • Save msmithstubbs/5491281 to your computer and use it in GitHub Desktop.

Select an option

Save msmithstubbs/5491281 to your computer and use it in GitHub Desktop.
var create_callback = function(data) {
if (data.status == 'OK') {
$("#inline_message").html('<h3>Thanks</h3> <p>You will receive an email once the item is available.</p>');
} else {
$("#inline_message").html('<h3>Oops! Looks like an error occurred.</h3> <p>Please check the email address you entered and try again.</p>');
}
$.fancybox({
'href': '#inline_message'
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment