It looks like you're new here. If you want to get involved, click one of these buttons!
<li><a href="#" class="icon" id="howtousecoffeegrounds"><span>How to Reuse Coffee Grounds</span></a></li>
$('.icon').click(function(e) {
e.preventDefault();
var view = $(this).attr('id');
$.ajax({
type: 'POST',
url: view,
success: function(data) {
$('#page').hide();
$('#page').html(data);
$('#page').slideDown('slow');
}
});
});
Comments
Adding the below code to the main layout file:
$this->load->helper('ajax'); if(!is_ajax()) $this->load->view('_blocks/header')?>
fuel_set_var('layout','');