kimsia
-
how to add border to progress bar done in css3 and jquery
Hat tip to sandeep at stackoverflow. http://stackoverflow.com/a/13929619/80353 If understand your question you can use CSS box-sizing property for this. Write like this: .meter > span{ border:2px solid red; -moz-box-sizing:border-box; -w…
-
how to assign different behavior to parent and child elements when child is hovering on top of paren
this is the code i used : /* tooltip for the settings */ // when enter into a story $(".story-in-myworks").mouseenter(function(e){ var currentStory = $(this); // and then click on the setting button of this story …