Example #1
0
 /**
  * evalScript
  *
  * @param  string $foo
  * @return jQuery
  */
 public static function evalScript($foo)
 {
     jQuery::init();
     $jQuery_Action = new jQuery_Action();
     $jQuery_Action->add("foo", $foo);
     jQuery::addAction(__FUNCTION__, $jQuery_Action);
     return jQuery::$jQuery;
 }