Jquery - selector not selecting multiple checkboxes IE
- by JKb
In IE, The selector for multiple inputs is not working whereas in firefox it is.
Below is the html.
<td><label for="contactInfo.shippingAddress.streetAddress1" class="mandatoryText">Address Line 1<em class="reqdfields"></td>
City*
State
Zip / Postal Code
Country
and below is jquery used -
$("*[id^='contactInfo\\.shippingAddress']").val("");
Any thoughts as to where the problem might be..