Please explain what function this line of code needs to implement, Is it in jquery or code behind?
please post more details information about your requirement.
Best regards,
sam
IIS.NET forums are moving to a new home on Microsoft Q&A, we encourage you to go to Microsoft Q&A for .NET for posting new questions and get involved today. Learn more >
Member
75 Points
513 Posts
how to set function for all input
Dec 09, 2019 07:10 AM|zhyanadil.it@gmail.com|LINK
i have this code i want to run it for all inputs by on line code i wrote this but but it's not correct
Contributor
3370 Points
1409 Posts
Re: how to set function for all input
Dec 09, 2019 08:14 AM|samwu|LINK
Hi zhyanadil,
According to your description, I couldn’t understand your requirement clearly.
Please explain what function this line of code needs to implement, Is it in jquery or code behind?
please post more details information about your requirement.
Best regards,
sam
All-Star
58444 Points
15769 Posts
Re: how to set function for all input
Dec 09, 2019 03:25 PM|bruce (sqlwork.com)|LINK
You need to loop thru all inputs
$(‘input’).each(function() {
this.value = this.value.replace(/“/g,’"’);
};