jQuery.printElement icon indicating copy to clipboard operation
jQuery.printElement copied to clipboard

Textarea issue with jQuery 2

Open Alaa84kh opened this issue 9 years ago • 0 comments

when using jquery.printelement with jQuery2, I face issue that all textarea value will miss. the fix is by replace var value = $(this).attr("value"); with: var value = $(this).val();

in textarea block in "jquery.printelement.js" file (~line 116).

Thanks Alaa

Alaa84kh avatar Nov 08 '15 09:11 Alaa84kh