onpaste function does not work in jsp -
i have created jsp using html:text tags looks below
<html:text name="form" property="name" styleid="id" style="width:150px" onpaste="false" /> the above onpaste function not work.
what error here?
there no onpaste attribute struts html tags <html:text />, perhaps add together javascript function it.
<html:text name="form" property="name" id="name" onfocus="disablepaste()"/> ------ javascript ------ function disablepaste(){ var input = document.getelementbyid("name"); if (input) input.onpaste = function(){return false;}; } jsp
No comments:
Post a Comment