Last active
March 17, 2017 11:48
-
-
Save cjmling/4562687 to your computer and use it in GitHub Desktop.
My First Gist
This file contains 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
$(document).ready(function(){ | |
$(document).click(function(event){ | |
if(event.target.id == "my_submit"){ | |
alert("yo"); | |
var my_phone = $("#my_amount").val(); | |
var my_number = $("#my_phone").val(); | |
alert(my_phone + my_number); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment