File: legacy/php-build/include/jQueryCalx.js

Recommend this page to a friend!
  Packages of ikhsan   jQuery Calx   legacy/php-build/include/jQueryCalx.js   Download  
File: legacy/php-build/include/jQueryCalx.js
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: jQuery Calx
Calculate form input values based on formulas
Author: By
Last change:
Date: 3 months ago
Size: 631 bytes
 

Contents

Class file image Download
/** * the surrogate of the calx world to the jQuery world * @param string $action [calx method] * @param object $options [option object] * @return jQuery */ $.fn.calx = function($action, $options) { if (calx[$action]) { return calx[$action].apply(this, Array.prototype.slice.call(arguments, 1)); } else if (typeof($action) == 'object' || typeof($action) == 'undefined') { var $calx = calx.init.apply(this, arguments); return $calx; } else { $.error('Method ' + $action + ' does not exist on jQuery.calx'); } };