Miva Merchant Development by Scot's Scripts

JQUERY: Click in a TD to check a checkbox in the td

Miva Knowledge Base
JQUERY: Click in a TD to check a checkbox in the td
Important Notice: This information is for internal reference only. Use at your own risk.
Does Google actually understand your Miva Merchant store? Our JSON-LD schema generator makes sure it does. Contact us to get started. (more info)

JQUERY: Click in a TD to check a checkbox in the td

Scot Ranney • December 19, 2023


Jquery: Click in a TD of a table to check the checkbox in that td. 

<script>
$('td').click(function (event) {
	if (!$(event.target).is('input')) {
	   $('input:checkbox', this).prop('checked', function (i, value) {
		return !value;
	   });
	}
});	
</script>

https://www.scotsscripts.com/mvblog/jquery-click-in-a-td-to-check-a-checkbox-in-the-td.html

mvkb_jquery mvkb_table