Skip to content

Instantly share code, notes, and snippets.

@dgp
Created September 8, 2014 07:45
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 dgp/a64360987ffdb15ebe53 to your computer and use it in GitHub Desktop.
Save dgp/a64360987ffdb15ebe53 to your computer and use it in GitHub Desktop.
JS code
content+='<a href= '#' class='pdf_viewer' data-url='+val2.displayUrl+ '>' + val2.displayUrl +'</a>'
Include this line in JS
$('a.pdf_viewer').live('click', function(e){
e.preventDefault();
url = $(e.target).data('url');
window.location = url;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment