Skip to content

Instantly share code, notes, and snippets.

View kevinvaldek's full-sized avatar

Kevin Valdek kevinvaldek

View GitHub Profile
// prototype
new Ajax.Request("/your/mom", onSuccess: function(response) { $("lightbox_content").innerHTML = response.responseJSON.contents })
// jquery
$.getJSON("/your/mom", function(json) { $("#lightbox_content").html(json.contents) })
// mootools
new Request.JSON({ url: '/your/mom', onSuccess: function(json) { $('lightbox_content').set('html', json.contents) } })