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