Created
February 17, 2017 07:15
-
-
Save Vad1mo/42344ff801f6f4700a1c700b29ab8f33 to your computer and use it in GitHub Desktop.
Display Hello jquery
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
jQuery(function($) { | |
$(document).ready(function() { | |
let params = new URL(window.location).searchParams; | |
let fn = params.get('first_name'); | |
if (fn) { | |
$("h1.av-special-heading-tag").text("Splendit "+fn+"!"); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment