Hey, I am wondering how to get the id of a checkbox when it is checked.
This is what my HTML would probably look like at first:
<div class="check_filter">
<div id="filter">
<input type="checkbox" id="check1" /><label for="check1">Marketing</label>
<input type="checkbox" id="check2" /><label for="check2">Automotive</label>
<input type="checkbox" id="check3" /><label for="check3">Sports</label>
</div>
</div><!-- End check_filter -->
I'm assuming the jQuery would look something like this:
$(document).ready(function() {
$(":checkbox").click(function(){
var id = $(this).attr('id');
$.post("index.php", { id: id });
//return false to ensure the page doesn't refresh
return false;
});
});
I'm trying to get the checked item id and then post that id in a mysql query to grab the results of the id from the database.
Thanks for any help on this.
You probably want the change
event here, like this:
$(function() {
$(":checkbox").change(function(){
$.post("index.php", { id: this.id, checked: this.checked });
});
});
This posts whenever a checkbox changes, and lets the PHP side know the ID and whether it's checked or not.
The jQuery you provided works fine? You should probably remove the return false
to show that the checkbox has been checked.
EDIT: $.post() is for an async request (AJAX technique) so there will be no page refresh.
EDIT 2: You may also want to see if the checkbox is checked (not just that it has been clicked):
$(document).ready(function() {
$(":checkbox").click(function(){
var id = $(this).attr('id');
var isChecked = $(this).attr('checked'));
$.post("index.php", { id: id, isChecked: isChecked });
});
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With