I\'m using the jsTree jQuery plugin with the checkbox theme. Does anyone know how to get the selected values with a form post?
Thank you!
With jQuery you can simply do:
jQuery
$('.jstree-checked,.jstree-undetermined').each(function(){ var rawCheckedID = $(this).find('a').attr('id'); });
This will get the undetermined and checked at the same time. soumya's solution above may be more efficient.