Every time I move the mouse pointer away from the textfield, it disappears. I've attempted to fix this issue by adding a visibility attribute with a value of 'visible', but that didn't work either.
If anyone could assist me in solving this problem, I would greatly appreciate it.
ORIGINAL CODE :
jq("#meteringpointtable").find(".search.results.field.point").mouseleave(function(){
jq("#meteringpointtable .search.results.field.point").attr('visibility','visible');
});
UPDATED CODE :
jq("#meteringpointtable").find(".search.results.field.point").mouseleave(function(){
jq(this).css({'visibility':'visible'});
console.log(jq(this).css('visibility'));
});