Advertisement
Advertisement
| 05.20.2008 at 08:29AM PDT, ID: 23417566 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: |
$(document).ready(function() {
$("#selcountry").change(function() {
if ($("option:selected", $(this)).attr("value")=="UnitedStates") {
$("#zipcodefield:hidden").show();
$("#distancefield:hidden").show();
} else {
$("#zipcodefield:visible").hide();
$("#distancefield:visible").hide();
$("#zipcodefield input").val("");
$("#distancefield option:selected").removeAttr("selected");
$("#distancefield option[value='25']").attr("selected","selected");
}
});
});
|