Created
April 30, 2013 19:32
-
-
Save msmithstubbs/5491281 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
| 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