[jQuery] JQuery form not working on ie6
On form submit loads a script "update/ajax" which recalcs cart
values. Post script loads the contents of the page (passed to
Codeigniter framework as the url: /cart?showcart/ajax)...Works gr8 in
safari Firefox but in ie6 it fails.... not picking up submit it falls
back to the degraded no javascript operation....
about time somebody kicked off a class action suit to sue microsoft
for all the time waste with their tinpot Browser ;-) ...
js code...
---------------------------
$(document).submit(function() {
var options = {url:'http://localhost/cart/update_ajax', success:
redraw };
$('#cart').ajaxSubmit(options);
return false;
});
function redraw(){
$('#inner_cont').load('http://localhost/cart/showCart/ajax');
}
-----------------------