jQWidgets jqxTooltip open Event
jQWidgets is a JavaScript framework for making web-based applications for PC and mobile devices. It is a very powerful, optimized, platform-independent, and widely supported framework. The jqxTooltip is a jQuery widget that is used to display a popup message. The jqxTooltip widget can be used in combination with any HTML element.
The open event is used to trigger when the tooltip popup is opened (shown).
Syntax:
$('#jqxTooltip').bind('open', function () { });
Linked Files: Download jQWidgets from the given link. In the HTML file, locate the script files in the downloaded folder.
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<link rel=”stylesheet” href=”jqwidgets/styles/jqx.energyblue.css”>
<script type=”text/javascript” src=”scripts/jquery-1.11.1.min.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”.jqwidgets/jqxbuttons.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxtooltip.js”></script>
Example: The below example illustrates the jQWidgets jqxTooltip open event.
HTML
<!DOCTYPE html> < html lang = "en" > < head > < link rel = "stylesheet" href = "jqwidgets/styles/jqx.base.css" type = "text/css" /> < link rel = "stylesheet" href = "jqwidgets/styles/jqx.energyblue.css" > < script type = "text/javascript" src = "scripts/jquery-1.11.1.min.js" ></ script > < script type = "text/javascript" src = "jqwidgets/jqx-all.js" ></ script > < script type = "text/javascript" src = "jqwidgets/jqxcore.js" ></ script > < script type = "text/javascript" src = ".jqwidgets/jqxbuttons.js" ></ script > < script type = "text/javascript" src = "jqwidgets/jqxtooltip.js" ></ script > </ head > < body > < center > < h1 style = "color: green;" > GeeksforGeeks </ h1 > < h3 > jQWidgets jqxTooltip open Event </ h3 > < br >< br > < input type = "button" id = "jqxBtn" style = "background: green;" value = "GeeksforGeeks" /> </ center > < script type = "text/javascript" > $(document).ready(function() { $('#jqxBtn',).jqxButton({ width: 150, height: 50 }); $("#jqxBtn").jqxTooltip({ theme: 'energyblue', content: 'A computer science portal', position: 'top', width: 250, height: 30 }); $('#jqxBtn').bind('open', function () { alert('Open Tooltip Popup'); }); }); </ script > </ body > </ html > |
Output:
Please Login to comment...