jQueryPlugins
jQueryPlugins copied to clipboard
input with no 'type' attr values are not rendered in the print output
like issue #1 that closed, but mine is input tag with no 'type' attribute
I can solve by change the selector from
//simple text inputs
$("input[type='text'])", $element).each(function () {
this.setAttribute('value', $(this).val());
});
to
//simple text inputs
$("input[type='text'],input:not([type])", $element).each(function () {
this.setAttribute('value', $(this).val());
});
thank you for this great job. Sathit
Thanks Sathit, will be fixed in next release