phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
JQueryAjaxEffect.php
Go to the documentation of this file.
1<?php
2namespace Ajax\service;
4 public static function none($responseElement,$jqueryDone="html"){
5 return "\t$({$responseElement}).{$jqueryDone}( data );\n";
6 }
7
8 public static function fade($responseElement,$jqueryDone="html"){
9 return "\t$({$responseElement}).hide().{$jqueryDone}( data ).fadeIn();\n";
10 }
11
12 public static function slide($responseElement,$jqueryDone="html"){
13 return "\t$({$responseElement}).hide().{$jqueryDone}( data ).slideDown();\n";
14 }
15}
static fade($responseElement, $jqueryDone="html")
static slide($responseElement, $jqueryDone="html")
static none($responseElement, $jqueryDone="html")