Jquery - selector not selecting multiple checkboxes IE
 In IE, The selector for multiple inputs is not working whereas in firefox it is. Below is the html.  
 
  
 
 
 
 
  
  
   
    - <td><input id="contactInfo.shippingAddress.city" name="contactInfo.shippingAddress.city" onchange="needToConfirm = true;" type="text" value="city" maxlength="100"/></td>
 
    -    <td ><input id="contactInfo.shippingAddress.state" name="contactInfo.shippingAddress.state" onchange="needToConfirm = true;" type="text" value="state" maxlength="100"/></td>
 
    -    <td><input id="contactInfo.shippingAddress.addressZipCode" name="contactInfo.shippingAddress.addressZipCode" onchange="needToConfirm = true;" type="text" value="123456" maxlength="10"/>
 
    -    </td>
 
    -    <td><select id="contactInfo.shippingAddress.country" name="contactInfo.shippingAddress.country" class="dropDown" onchange="needToConfirm = true;"></td>
 
   
and below is jquery selector used - 
  
 
  
   
  
  
   
    - $("*[id^='contactInfo\\.shippingAddress']").val("");
 
   
   
  
   Any thoughts as to where the problem might be.. ??