[jQuery] Breaking changes during upgrade to 1.3.2
When I upgraded to 1.3.2 from 1.2.6 the following code segment broke.
Does anyone know if there any breaking changes in the jquery syntax,
or am I just using it wrong?
function ToggleCheckboxes(sender, featureTypeId) {
$("span[@featureTypeId$='" + featureTypeId + "']").find
("input[@type$='checkbox']").each(function() {
this.checked = sender.checked;
});
}