Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
96
rated 0 times [  101] [ 5]  / answers: 1 / hits: 180248  / 12 Years ago, sun, october 21, 2012, 12:00:00

I have an input field and i am trying to set its value using its class



<form:input path=userName id=userName title=Choose A Unique UserName readonly=${userNameStatus} class=formData/>


Which renders as:



<input id=userName name=userName title=Choose A Unique UserName class=formData type=text value=/>


I am using the following jquery but this does not seem to work. Can someone tell me where i am going wrong.



$(.formData).html();


Edited JQuery Function that handles the event



$('#reset').click(function (){
$(#userNameErr).text();
$('#badgeNoErr').text();

$(.errors).html();

$(.formData).val();

});


nor is $(.formData).text() or $(.formData).val() working.


More From » jquery

 Answers
5

This should work.



$(.formData).val(valuesgoeshere)


For empty



$(.formData).val()


If this does not work, you should post a jsFiddle.



Demo:



$(function() {
$(.resetInput).on(click, function() {
$(.formData).val();
});
})

<script src=https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js></script>
<input type=text class=formData value=yoyoyo>


<button class=resetInput>Click Here to reset</button>




[#82453] Friday, October 19, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
turnerf

Total Points: 620
Total Questions: 101
Total Answers: 109

Location: French Polynesia
Member since Tue, Jul 7, 2020
4 Years ago
turnerf questions
;