Skip to content

Instantly share code, notes, and snippets.

@Mgregchi
Last active October 27, 2021 15:08
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 Mgregchi/cdd189d737d9e5652f3aeede8542d64a to your computer and use it in GitHub Desktop.
Save Mgregchi/cdd189d737d9e5652f3aeede8542d64a to your computer and use it in GitHub Desktop.
Access and use html elements from page loaded with JQuery .load()
$(document).ready(function(){
$("#loader").click(function(){
$("#container").load("/jquery-load-shopping-basket/",
function(e){
$(this).find("#empty-basket-search")
.keypress(function(e){
$("#single-label").text("You've clicked: ".concat(e.keyCode))
})
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment