How to show icon on those word where i hover.
Here is the fiddle
, currently if i mouse over on child <li>
then parent <ul>
icon is also showing...
What i want is:
If i mouse-over on any row then only 1 & corresponding icon should show, it should not show parent icon.
Please see the fiddle to know more.
Please help! Is it possible to solve with Jquery?
It looks like:
I used this css
#project-div-id ul li { list-style: circle ; margin-top: 2px; width: 175px; }
#project-div-id ul li img {list-style: circle ; display: none; }
#project-div-id ul li:hover img { display: inline; float: right; }
.add_btn,.del_btn,.edit_btn{
padding-left: 10px; }
's and not just using one single
– SaminOz Apr 14 '14 at 20:56+- 's - is there a reason for that?