|
What are the different ways by which you can select a HTML element in JQuery ? ( ASP.Net jquery interview questions with answers)
You can select Jquery elements in the following ways:- Select all paragraph tags and hide them
|
What are the different ways by which you can select a HTML element in JQuery ? ( ASP.Net jquery interview questions with answers)
ou can select Jquery elements in the following ways:- Select all paragraph tags and hide them
|
ASP.NET JQuery interview questions with answers on Noconflict
What is jQuery.noConflict Let say we have an old maintenance project with us and now we w
|
how to call the asp.net controls using jquery in the client side?
Get Label Value:
$('#<%=Label.ClientID%>').text();
Set label value:
$('#<%=Label.ClientID%>').text("New Value");
Get Textbox value:
$('#<%=TextBox.ClientID%>').val();
Set Textbox value:
$('#<%=TextBox.ClientID%>').val("New
Value");
Get Dropdown value:
$('#<%=DropDownList.ClientID%>').val();
Set Dropdown value:
$('#<%=DropDownLi
|