I am getting no data while using ajax call, it works fine without ajax or if I send no any parameter in ajax.
The code for ajax is as
$(this).ajaxCall('blog.tagsSearch','keyword='+tags+'&encode=1&zipcode=LS11%206AU&rangevaluefrom=3&rangetype=0&view=my','GET');
<?php
Phpfox::getComponent('blog.index', array(), 'controller');
$this->html('.column_wrapper', $this->getContent(false));
?>
please check inside \module\blog\include\component\ajax\ajax.class.php
there function tagsSearch(){ }
is defined
class Blog_Component_Ajax_Ajax extends Phpfox_Ajax
{
// ... other codes
public function tagsSearch(){
// ... codes for tag search
}
// ... more codes
}