Skip to content

Instantly share code, notes, and snippets.

@riix
Created July 24, 2012 07:19
Show Gist options
  • Save riix/3168555 to your computer and use it in GitHub Desktop.
Save riix/3168555 to your computer and use it in GitHub Desktop.
URI 쿼리 탐색, Detect URI Query String
$(document).ready(function() {
if(document.location.search == "?msg=thanks") {
$("#alert").html("Thanks for your submission!");
} else if(document.location.search == "?msg=error") {
$("#alert").html("There was an error with your submission!");
} else {
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment