The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxTooltip widget requires the following files:
<div id='elementID'></div>
<script type="text/javascript"> $(document).ready(function () { // Create jqxTooltip $("#elementID").jqxTooltip({ content: 'This is a div element.' }); });</script>
To get the result of a function(method) call, you need to pass the method name in the jqxTooltip’s constructor and parameters(if any).$("#jqxtooltip").jqxTooltip(‘add’, element);
To set a property(option), you need to pass the property name and value(s) in the jqxTooltip's constructor.var value = $("#jqxTooltip").jqxTooltip(‘close’);
To get a property(option), you need to pass the property name to the jqxTooltip's constructor.$("#jqxTooltip").jqxTooltip({ animationShowDelay: 500 });
To bind to an event of a UI widget, you can use basic jQuery syntax. Let’s suppose that you want to know when the tooltip is displayed. The example code below demonstrates how to bind to the ‘shown’ event of jqxTooltip.var animationShowDelay = $("#jqxTooltip").jqxTooltip('animationShowDelay');
$("#jqxtooltip").on('open', function () {});
<!DOCTYPE html><html lang="en"><head> <title></title> <link rel="Stylesheet" type="text/css" href="../../jqwidgets/styles/jqx.base.css" /> <script type="text/javascript" src="../../scripts/jquery-1.11.1.min.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxtooltip.js"></script> <script type="text/javascript" src="../../jqwidgets/jqxbuttons.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#jqxbutton").jqxButton({ width: 100, height: 30 }); $("#jqxbutton").jqxTooltip({ position: 'top', content: 'This is a jqxButton.' }); }); </script><script async src="https://www.googletagmanager.com/gtag/js?id=G-2FX5PV9DNT"></script><script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'G-2FX5PV9DNT');</script></head><body> <div> Hover over the button to see a jqxTooltip in action.</div> <input type="button" style="margin: 50px;" id="jqxbutton" value="Button" /></body></html>