jQuery"

From Documentation
Line 26: Line 26:
  
  
{{ZKClient-sideReferenceHeadingToc}}
+
 
 
{{ZKClient-sideReferencePageFooter}}
 
{{ZKClient-sideReferencePageFooter}}

Revision as of 01:53, 2 March 2020


ZK framework's Client Engine is based on jQuery, it's already bundled a custom jQuery. So you can use jq or $ as a jQuery object like:

$( "div" ).click(function() {
    //...
});

jq(mySelector).css( "background-color" );

You should consider implementing your client code with the bundled jQuery first. For API details, please refer to jQuery Documentation for details.

Version

To obtain the jQuery version bundled with your ZK version enter jq.fn.jquery into Console tab of a developer tool.


Load a Different jQuery

You can load a different version of jQuery by <script/> or <?script?>. Because ZK always load that script later than ZK scripts, the different version of jQuery will override $. Therefore, you can access 2 versions of jquery with different variables:

  • jq to access ZK's bundled jQuery
  • $ to access the different version of jQuery

Please check examples: jquery.zul, jquery2




Last Update : 2020/03/02

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.