> $(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');
>
>    }
> -----------------------


Try binding submit on the form instead of the document.

Reply via email to