Sunday, 15 July 2012

How to implement ajax in magento? (frontend side)

ajax.phtml
------------






app/code/local/companyname/helloworld/controllers/indexController.php
---------------
class Companyname_HelloWorld_IndexController extends Mage_Core_Controller_Front_Action
  {  
    public function AjaxAction()  
      {  
       $this->loadLayout();  
       $this->renderLayout();  
      }
  }

app/design/frontend/default/themename/layout/helloworld.xml
-----------------------
  
         
          
      
  
         
          
      
  
  

  
app/design/frontend/default/themename/template/page/ajax.phtml
--------------------------------
getChildHtml('content'); ?>

app/design/frontend/default/themename/template/helloworld/ajaxresponse.phtml
--------------------------------
echo "response of ajax is executed";
?>

No comments:

Post a Comment