Skip to main content

Posts

Showing posts from January, 2017

jQuery Plugin To Create Editable Hotspots On Any Elements

jQuery Plugin To Create Editable Hotspots On Any Elements Hotspot is a jQuery plugin used to generate hotspots (e.g. comments, image annotations, text notes) on any Html elements. Features: Display mode: Display hotspots like a tooltip. Can be triggered with hover or click. Admin mode: Add/remove/edit your custom hotspots and save them in local storage. Allows to handle hotspots via Ajax calls. Callback events supported. Basic Usage: 1. Include jQuery library together with jQuery hotspot's stylesheet & script in the document. 1 < link   rel = "stylesheet"   href = "jquery.hotspot.css" > 2 < script   src = "//code.jquery.com/jquery-1.11.1.min.js" ></ script > 3 < script   src = "jquery.hotspot.js" ></ script > 2. Wrap the image into a DIV element. 1 < div   id = "image-hotspots" > 2    < img   src = "images/1.jpg" > 3 </ ...