Yes, I'm using Jquery.
Like
tvnVideoApp.sendRequest = function(page) {
  $.ajax({
        type: "POST",
        timeout:3000,
        url:  sBasePath + '/admin/video/listxhr' ,
        cache: false,
        dataType: 'html',
        data: {'page':page} ,
        success: function(data){
        $("#dataWrapper tbody").html(data);
           alert(data);
        },
        error:function(xhr, str, er){
            alert('error');
            return;
        }
  }); 
}
Thanks for the quick reply :)
-- 
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Session-Db-trouble-with-ajax-request-tp2073591p2073605.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to