You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
Alaa84kh
changed the title
Textarea with jQuery 2 issue
Textarea issue with jQuery 2
Nov 8, 2015
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
The text was updated successfully, but these errors were encountered: