HEllo,
I have a site where I want to introduce reply user functionality. How to make an ajax loaded reply text field like a popup? currently, i m using a text field which takes hell lot of time on clicking reply. Is there any method to make it faster?
My ajax call is :
$("#replyMe").click(function(){
$().ajaxStart($.blockUI);
$.ajax({
type: "POST",
url: "<?php echo $html->url('/askmeouts/sent/'.$to['Profile']['id'])?>",
success: function(msg){
$('.show').html(msg);
}
});