Skip to content

Instantly share code, notes, and snippets.

@maxmoore14
Created November 7, 2014 23:03
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 maxmoore14/23b6721b41c58c10737e to your computer and use it in GitHub Desktop.
Save maxmoore14/23b6721b41c58c10737e to your computer and use it in GitHub Desktop.
Open a JQM popup with an image
$('<img>').appendTo(myPopupElement)
.on('load', function () {
// open the popup here
})
.attr('src', myImageSource)
.attr('alt', 'my alt text');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment