Skip to content

Instantly share code, notes, and snippets.

@Vad1mo
Created February 17, 2017 07:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vad1mo/42344ff801f6f4700a1c700b29ab8f33 to your computer and use it in GitHub Desktop.
Save Vad1mo/42344ff801f6f4700a1c700b29ab8f33 to your computer and use it in GitHub Desktop.
Display Hello jquery
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