I am trying to select an input where the value is equal to the dynamic value
trimmed = jQuery.trim(a); preSelectedCheckBox = $(this).find("input[value=" + trimmed + "]");
The item exists, but I do not get any value. ($ (preSelectedCheckBox) .length = 0)
source share