How to select form input elements using JQuery
How to select form input elements using JQuery:
Select Textbox using jQuery – $(‘input:text’)
Select a textbox field using JQuery
$('input:text');
Select a textbox value using JQuery
$('input:text').val();
Set a textbox value using JQuery
$('input:text').val("New Text");
2. Select Password using jQuery – $(‘input:password’)
Select password field using JQuery
$('input:password');
Select password value using JQuery
$('input:password').val();
Set password value using JQuery
$('input:password').val("New Text");
3. Select Textarea using jQuery – $(‘textarea’)
Select a textarea field using JQuery
$('textarea');
Select a textarea value using JQuery
$('textarea').val();
Set a textarea value using JQuery
$('textarea').val("New Text in Textarea");
4. Select Radio Buttons using jQuery – $(‘input:radio’)
Select a radio button field using JQuery
$('input:radio');
Select value of a selected radio button using JQuery
$('input:radio[name=radiobutton-name]:checked').val();
Select first selected radio button using JQuery
$('input:radio[name=radiobutton-name]:nth(0)').attr('checked',true);
or
$('input:radio[name=radiobutton-name]')[0].checked = true;
5. Select Check Box using jQuery – $(‘input:checkbox’)
Select a checkbox field using JQuery
$('input:checkbox');
Check if a chcekbox is checked using JQuery
$('input:checkbox[name=checkboxname]').is(':checked');
Set a checkbox to checked using JQuery
$('input:checkbox[name=checkboxname]').attr('checked',true);
Set a checkbox to unchecked using JQuery
$('input:checkbox[name=checkboxname]').attr('checked',false);
6. Select File Upload using jQuery – $(‘input:file’)
Select a file input using JQuery
$('input:file');
Select the value of a file input using JQuery
$('input:file').val();
7. Select Hidden Inputbox using jQuery – $(‘input:hidden’)
Select a hidden inputbox using JQuery
$('input:hidden');
Select the value if a hidden input box using JQuery
$('input:hidden').val();
Set the value of hidden text box using JQuery
$('input:hidden').val("New Text");
8. Select dropdown box using jQuery – $(‘select’)
Select a dropdown box using JQuery
$('select')
or
$('#dropdown-id')
Select the value if selected dropdown box using JQuery
$('#dropdown-id').val();
Set the value of a dropdown box using JQuery
$("#dropdown-id").val("China");
9. Select Submit button using jQuery – $(‘input:submit’)
Select submit button using JQuery
$('input:submit');
10. Select Reset button using jQuery – $(‘input:reset’)
Select the reset button using JQuery
$('input:reset');
Here is a sample fiddle with working example
Sample Code on Github
(Download and run it as HTML)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>jQuery form selector example</title> | |
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-PmY9l28YgO4JwMKbTvgaS7XNZJ30MK9FAZjjzXtlqyZCqBY6X6bXIkM++IkyinN+" crossorigin="anonymous"> | |
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script> | |
<style type="text/css"> | |
div{ | |
padding:16px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1 class="text-center">How To Select Form Elements using JQuery</h1> | |
<form name="testing" action="#"> | |
<div> | |
TextBox : <input class="form-control" type="text" value="This is message from textbox" /> | |
</div> | |
<div> | |
Password : <input class="form-control" type="password" value="This is message from password" /> | |
</div> | |
<div> | |
TextArea : <textarea class="form-control">This is message from textarea</textarea> | |
</div> | |
<div> | |
Radio : <input class="form-control" name="sex" type="radio" value="Male" checked>Male</input> | |
<input class="form-control" name="sex" type="radio" value="Female">Female</input> | |
</div> | |
<div> | |
CheckBox : <input class="form-control" type="checkbox" name="checkme">Check Me</input> | |
</div> | |
<div> | |
File : <input class="form-control" type="file"></input> | |
</div> | |
<div> | |
Hidden : <input type="hidden" value="This is message from hidden"/> | |
</div> | |
<div> | |
Country : <select class="form-control" id="country"> | |
<option value="China">China</option> | |
<option value="United State">United State</option> | |
</select> | |
</div> | |
<div> | |
<input type="submit" class="btn btn-primary"></input> <input class="btn btn-default" type="reset"></input> | |
</div> | |
</form> | |
<h2>Selection: <label id="msg"></label></h2> | |
<button class="btn btn-info" id="text">input:text</button> | |
<button class="btn btn-info" id="password">input:password</button> | |
<button class="btn btn-info" id="textarea">textarea</button> | |
<button class="btn btn-info" id="radio">input:radio</button> | |
<button class="btn btn-info" id="checkbox">input:checkbox</button> | |
<button class="btn btn-info" id="file">input:file</button> | |
<button class="btn btn-info" id="hidden">input:hidden</button> | |
<button class="btn btn-info" id="select">select</button> | |
<button class="btn btn-info" id="submit">input:submit</button> | |
<button class="btn btn-info" id="reset">input:reset</button> | |
<script type="text/javascript"> | |
// select various input boxes and get their values | |
$("#text, #password, #hidden, #textarea, #file, #submit, #reset").click(function () { | |
var str = $(this).text(); | |
$('input, textarea, select').css("background", "#ffffff"); | |
$(str).css("background", "#ff0000"); | |
$('#msg').html($(str).val()) | |
}); | |
// select radio button values | |
$("#radio").click(function () { | |
$('input, textarea, select').css("background", "#ffffff"); | |
$('#msg').html($('input:radio[name=sex]:checked').val()); | |
}); | |
// select checkbox values | |
$("#checkbox").click(function () { | |
var str = $(this).text(); | |
$('input, textarea, select').css("background", "#ffffff"); | |
if($('input:checkbox[name=checkme]').is(':checked')){ | |
$('#msg').html("Checkbox is checked"); | |
}else{ | |
$('#msg').html("Checkbox is uncheck"); | |
} | |
}); | |
$("#select").click(function () { | |
$('input, textarea, select').css("background", "#ffffff"); | |
$('#msg').html($('#country').val()); | |
}); | |
</script> | |
</body> | |
</html> |
Comments
Post a Comment