{"id":4577,"date":"2024-01-20T17:09:00","date_gmt":"2024-01-20T17:09:00","guid":{"rendered":"https:\/\/codehim.com\/?p=4577"},"modified":"2024-01-22T15:47:08","modified_gmt":"2024-01-22T10:47:08","slug":"jquery-simple-tooltip-on-hover","status":"publish","type":"post","link":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/","title":{"rendered":"jQuery Simple Tooltip on Hover &#8211; simpleTooltip"},"content":{"rendered":"<section class=\"cm-intro\">\n<div class=\"first-pera\">\n<p>Yet another <a href=\"\/tag\/tooltip\/\" title=\"jQuery Tooltip plugins\">tooltip plugin<\/a> for jQuery to create <strong>simple tooltip on hover<\/strong>. The &#8220;simple-tooltip&#8221; is a lite, easy-peasy, clean and fully customizable tooltip plugin for jQuery. You can show tooltip with any HTML element (like links, buttons, span etc) with custom CSS design. You just need to define <code>title<\/code> attribute of that element then this plugin will show its magic.<\/p>\n<\/div>\n<div class=\"first-pera-ad\">\n[intro_ad]\n<\/div>\n<\/section>\n<div class=\"cm-box\">\n<h2 class=\"box-title\">Plugin Overview and Preview<\/h2>\n<section class=\"overview-wrapper\">\n<div class=\"code-overview\">\n<table>\n<tbody>\n<tr>\n<td> <i class=\"fa fa-plug\"><\/i> Plugin:<\/td>\n<td>simple-tooltip<\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-user\"><\/i> Author:<\/td>\n<td>Jonas Arnklint <\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-folder\"><\/i> Category:<\/td>\n<td> <a href=\"\/others\/\">Others<\/a> <\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-clock-o\"><\/i> Published: <\/td>\n<td> January 20, 2024 <\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-file-code-o\"><\/i> File Type:<\/td>\n<td>zip archive (HTML, CSS &#038; JavaScript )<\/td>\n<\/tr>\n<tr>\n<td> <i class=\"fa fa-file-archive-o\"><\/i> Package Size:<\/td>\n<td>File path is not allowed!<\/td>\n<\/tr>\n<tr>\n<td><i class=\"fa fa-link\"><\/i> Dependencies:<\/td>\n<td><a title=\"jQuery is a lightweight, write less, do more JavaScript library.\" href=\"https:\/\/jquery.com\/download\/\" target=\"_blank\" class=\"external\" rel=\"noopener noreferrer\">jQuery 3.0 <\/a> or Latest version<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<div class=\"code-preview\">\n<figure class=\"cm-plugin-preview\"> <div id=\"featured-img-id\"><img decoding=\"async\" src=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png\" alt=\"jQuery Simple Tooltip on Hover - simpleTooltip\" \/><\/div> <\/figure>\n<\/div>\n<div class=\"cm-clear\"><\/div>\n<div class=\"plugin-meta\">\n<div class=\"cm-meta post-publish-date\"> Last Modified: <time> [last-modified] <\/time><\/div>\n<div class=\"cm-meta plugin-licence\" title=\"Licence\"> MIT <\/div>\n<div class=\"cm-meta code-fork\"> <a href=\"https:\/\/github.com\/arnklint\/simple-jquery-tooltip-plugin\" target=\"_blank\" title=\"Fork on GitHub\" rel=\"noopener noreferrer\"> Fork on GitHub<\/a> <\/div>\n<div class=\"cm-meta post-views\" title=\"Views\"> 4,610 <\/div>\n<\/div>\n<\/section>\n<\/div>\n<section class=\"cm-btn-group\">\n<div class=\"cd-action down-btns\">\n<a title=\"View live preview\" class=\"btn demo\" target=\"_blank\" href=\"\/demo\/jquery-simple-tooltip-on-hover\" rel=\"noopener noreferrer\"> Demo <\/a> <a title=\"Download distributed version\" class=\"btn download\" href=\"\/download\/jquery-simple-tooltip-on-hover.zip\" rel=\"nofollow\"> Download <\/a> <a title=\"Download latest version of this plugin\" href=\"https:\/\/github.com\/arnklint\/simple-jquery-tooltip-plugin\/archive\/master.zip\" class=\"btn btn-master-download\" rel=\"nofollow noopener noreferrer\"> Download Master Repository <\/a>\n<\/div>\n<div class=\"codehim-share\">\n<span class=\"share-title\">Share this:<\/span> <span class=\"share-btn-container\"> <\/span>\n<\/div>\n<\/section>\n<section class=\"code-quality cm-box\">\n<div class=\"ad-area\">\n[ad_after_overview]\n<\/div>\n<div class=\"rating-area\">\n<h3 class=\"box-title\"> Code Rating <\/h3>\n<div class=\"box-inner code-rating\">\n[site_reviews_summary assigned_to=&#8221;post_id&#8221;]\n<\/div>\n<\/div>\n<\/section>\n<div class=\"cm-clear\"><\/div>\n<section class=\"cm-tabs\">\n<ul class=\"cm-tab-names\">\n<li><a title=\"Documentation\" href=\"#documentation\" class=\"tab-name tab-docs active\"> Documentation <\/a><\/li>\n<li><a title=\"Advance Configuration Options\" href=\"#config-option\" class=\"tab-name tab-config\"> Configuration Options <\/a><\/li>\n<li><a title=\"Changelog\" href=\"#changelog\" class=\"tab-name tab-changelog\"> Changelog <\/a><\/li>\n<li><a title=\"Developer Reviews\" href=\"#reviews\" class=\"tab-name tab-reviews\"> Developer Reviews <\/a><\/li>\n<\/ul>\n<div class=\"tab show\" id=\"documentation\">\n<h2 class=\"tab-title\"> How to Create jQuery Simple Tooltip On Hover <\/h2>\n<p>1. In order to create jQuery simple tooltip on hover we need to start with &#8220;simple-tooltip&#8221; plugin. So, first of all load the jQuery  into your website project.<\/p>\n<pre class=\"prettyprint lang-html linenums\">\r\n&lt;!-- jQuery --&gt;\r\n&lt;script src=\"https:\/\/code.jquery.com\/jquery-3.4.1.min.js\"&gt;&lt;\/script&gt;\r\n<\/pre>\n<p> 2. Ok! now, include plugin&#8217;s JavaScript file in your HTML document.<\/p>\n<pre class=\"prettyprint lang-html linenums\">\r\n&lt;!-- simple-tooltip JS --&gt;\r\n&lt;script src=\"js\/jquery.simple-tooltip.js\"&gt;&lt;\/script&gt;<\/pre>\n<p> 3. Create HTML link (or any other element) with <code>title<\/code> attribute.<\/p>\n<pre class=\"prettyprint lang-html linenums\">      &lt;p&gt;\r\n        This plugin is made by &lt;a href=\"http:\/\/arnklint.com\" id=\"my-link\" title=\"Web developer from Ume\u00e5 in Sweden\"&gt;Jonas Arnklint&lt;\/a&gt;\r\n      &lt;\/p&gt;<\/pre>\n<p> 4. Style your <strong>tooltip<\/strong> with CSS. <\/p>\n<pre class=\"prettyprint lang-css linenums\">\r\n      #v-tooltip {\r\n        position:absolute;\r\n      \tbackground:#000;\r\n      \tpadding:3px 5px;\r\n      \tcolor:#fff;\r\n      \tfont-size: 11px;\r\n      \tfont-family: Arial, Verdana, sans-serif;\r\n      \tdisplay:none;\r\n        -moz-border-radius: 3px;\r\n      \t-webkit-border-radius: 3px;\t\r\n      }\r\n<\/pre>\n<p> 5. Finally, call the simple-tooltip plugin (with <code>#my-link<\/code> selector) in jQuery document ready function to active the tooltip.<\/p>\n<pre class=\"prettyprint lang-js linenums\">$(document).ready(function(){\r\n\t$('#my-link').simpleTooltip();\r\n});<\/pre>\n<p><i> For more advance usage, please check the <b>Configuration Options<\/b> tab. <\/i><\/p>\n<\/div>\n<div class=\"tab\" id=\"config-option\">\n<h2 class=\"tab-title\"> Advance Configuration Options for jQuery simple Tooltip on Hover <\/h2>\n<p> The following are some advanced configuration options to create \/ customize <strong>jQuery simple tooltip on hover<\/strong>. <\/p>\n<table class=\"config-options\">\n<tbody>\n<tr>\n<th> Option <\/th>\n<th> Default <\/th>\n<th> Type <\/th>\n<th> Description <\/th>\n<\/tr>\n<tr>\n<td><var>title<\/var><\/td>\n<td>null<\/td>\n<td><code>String<\/code><\/td>\n<td>Define the title tooltip.<br \/>\n<br \/><b>Example: <\/b><\/p>\n<pre class=\"prettyprint lang-js\">$(element).simpleTooltip({\r\n\ttitle : null,\r\n}); <\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><var>xOffset<\/var><\/td>\n<td>10<\/td>\n<td><code>Number<\/code><\/td>\n<td>It define the x offset for tooltip.<br \/>\n<br \/><b>Example: <\/b><\/p>\n<pre class=\"prettyprint lang-js\">$(element).simpleTooltip({\r\n\txOffset : 10,\r\n}); <\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><var>yOffset<\/var><\/td>\n<td>20<\/td>\n<td><code>Number<\/code><\/td>\n<td>The y offset of tooltip.<br \/>\n<br \/><b>Example: <\/b><\/p>\n<pre class=\"prettyprint lang-js\">$(element).simpleTooltip({\r\n\tyOffset : 20,\r\n}); <\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><var>delay<\/var><\/td>\n<td>400<\/td>\n<td><code>Number<\/code><\/td>\n<td>Delay in milliseconds after that tooltip will be fade in.<br \/>\n<br \/><b>Example: <\/b><\/p>\n<pre class=\"prettyprint lang-js\">$(element).simpleTooltip({\r\n\tdelay : 400,\r\n}); <\/pre>\n<\/td>\n<\/tr>\n<tr>\n<td><var>overrideElementTitle<\/var><\/td>\n<td>false<\/td>\n<td><code>Boolean<\/code><\/td>\n<td>Decide whether to override element title attribute.<br \/>\n<br \/><b>Example: <\/b><\/p>\n<pre class=\"prettyprint lang-js\">$(element).simpleTooltip({\r\n\toverrideElementTitle : false,\r\n}); <\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table><\/div>\n<div class=\"tab\" id=\"changelog\">\n<h4 class=\"tab-title\"> Changelog <\/h4>\n<p><b>22\/10\/2019<\/b><\/p>\n<ul>\n<li>Updated dependency (jQuery) to latest version. <\/li>\n<\/ul>\n<\/div>\n<div class=\"tab\" id=\"reviews\">\n[site_reviews assigned_to=&#8221;post_id&#8221;]<\/p>\n<h5> Submit Your Review <\/h5>\n<p>[site_reviews_form assign_to=&#8221;post_id&#8221;]\n<\/p><\/div>\n<\/section>\n<div class=\"cm-box\">\n<div class=\"box-inner\">\n[ad_after_artical]\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Yet another tooltip plugin for jQuery to create simple tooltip on hover. The &#8220;simple-tooltip&#8221; is a lite, easy-peasy, clean and&#8230;<\/p>\n","protected":false},"author":1,"featured_media":4578,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[56],"tags":[65],"class_list":["post-4577","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-others","tag-tooltip"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>jQuery Simple Tooltip on Hover - simpleTooltip &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"A lightweight jQuery plugin to ctreate simple tooltip on hover with custom CSS styles. Useful to show mouseover tooltip on link, buttons or any HTML element\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"jQuery Simple Tooltip on Hover - simpleTooltip &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"A lightweight jQuery plugin to ctreate simple tooltip on hover with custom CSS styles. Useful to show mouseover tooltip on link, buttons or any HTML element\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-20T17:09:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:47:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png\" \/>\n\t<meta property=\"og:image:width\" content=\"983\" \/>\n\t<meta property=\"og:image:height\" content=\"739\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"jQuery Simple Tooltip on Hover &#8211; simpleTooltip\",\"datePublished\":\"2024-01-20T17:09:00+00:00\",\"dateModified\":\"2024-01-22T10:47:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/\"},\"wordCount\":323,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png\",\"keywords\":[\"Tooltip\"],\"articleSection\":[\"Others\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/\",\"url\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/\",\"name\":\"jQuery Simple Tooltip on Hover - simpleTooltip &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png\",\"datePublished\":\"2024-01-20T17:09:00+00:00\",\"dateModified\":\"2024-01-22T10:47:08+00:00\",\"description\":\"A lightweight jQuery plugin to ctreate simple tooltip on hover with custom CSS styles. Useful to show mouseover tooltip on link, buttons or any HTML element\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png\",\"width\":983,\"height\":739,\"caption\":\"jQuery Simple Tooltip on Hover - simpleTooltip\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Others\",\"item\":\"https:\/\/codehim.com\/category\/others\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"jQuery Simple Tooltip on Hover &#8211; simpleTooltip\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"jQuery Simple Tooltip on Hover - simpleTooltip &#8212; CodeHim","description":"A lightweight jQuery plugin to ctreate simple tooltip on hover with custom CSS styles. Useful to show mouseover tooltip on link, buttons or any HTML element","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/","og_locale":"en_US","og_type":"article","og_title":"jQuery Simple Tooltip on Hover - simpleTooltip &#8212; CodeHim","og_description":"A lightweight jQuery plugin to ctreate simple tooltip on hover with custom CSS styles. Useful to show mouseover tooltip on link, buttons or any HTML element","og_url":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-20T17:09:00+00:00","article_modified_time":"2024-01-22T10:47:08+00:00","og_image":[{"width":983,"height":739,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"jQuery Simple Tooltip on Hover &#8211; simpleTooltip","datePublished":"2024-01-20T17:09:00+00:00","dateModified":"2024-01-22T10:47:08+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/"},"wordCount":323,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png","keywords":["Tooltip"],"articleSection":["Others"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/","url":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/","name":"jQuery Simple Tooltip on Hover - simpleTooltip &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png","datePublished":"2024-01-20T17:09:00+00:00","dateModified":"2024-01-22T10:47:08+00:00","description":"A lightweight jQuery plugin to ctreate simple tooltip on hover with custom CSS styles. Useful to show mouseover tooltip on link, buttons or any HTML element","breadcrumb":{"@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2019\/11\/jquery-simple-tooltip.png","width":983,"height":739,"caption":"jQuery Simple Tooltip on Hover - simpleTooltip"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/others\/jquery-simple-tooltip-on-hover\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Others","item":"https:\/\/codehim.com\/category\/others\/"},{"@type":"ListItem","position":3,"name":"jQuery Simple Tooltip on Hover &#8211; simpleTooltip"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":4610,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4577","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=4577"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/4577\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/4578"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=4577"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=4577"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=4577"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}