Skip to content

Instantly share code, notes, and snippets.

View adamkittelson's full-sized avatar

Adam Kittelson adamkittelson

  • Adobe
  • Madison, WI
  • 21:30 (UTC -06:00)
View GitHub Profile
// prototype
new Ajax.Request("/your/mom", onSuccess: function(response) { $("lightbox_content").update(response.responseJSON.contents) })
// jquery
$.getJSON("/your/mom", function(json) { $("#lightbox_content").html(json.contents) })