Skip to content

Instantly share code, notes, and snippets.

@cjmling
Last active March 17, 2017 11:48
Show Gist options
  • Save cjmling/4562687 to your computer and use it in GitHub Desktop.
Save cjmling/4562687 to your computer and use it in GitHub Desktop.
My First Gist
$(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