(08-29-2016, 08:39 AM)doomie22 Wrote: This looks amazing. One question, does it have the ability of updating a figure on a page without reloading (e.g. the live right now on google analytics)? Thanks, Doomie
$ajax->click('element_id_to_click_on' , $ajax->call(array('update','figure')));
<div id='container_id'></div> <a href='#' id='element_id_to_click_on'> Update </a>
class Update { public function figure() { $ajax->ajax(); $ajax->container_id = $content_here; }}