Hi,
I am using JQuery for my application. In my code, I want to get only the text 'Firstname' in the label.
I tried it with
$("#label"+div_id+"").html(); //but displays Firstname along with the span tag..
But I only need Firstname. How can i do so?
The following is my Html code
<label id="label1">Firstname<span class="req"><em> * </em></span></label>