Skip to content

Instantly share code, notes, and snippets.

@knowlet
Created September 17, 2015 14:12
Show Gist options
  • Save knowlet/d6d7307f28bd9a30b80e to your computer and use it in GitHub Desktop.
Save knowlet/d6d7307f28bd9a30b80e to your computer and use it in GitHub Desktop.
put ypur own image url into slides!
$(".sl-block-content").click(function (e){
if (this.innerHTML=="") {
var URL = prompt("Please input the image src")
URL && $(this).append('<img src="' + URL + '">')
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment