Hi
I hope you can help me.
I have a jquery that hides div on a condition
if(search === ''){
$("#wrap").css('visibility', 'hidden');
}else{
$("#wrap").css('visibility', 'visible');
}
});
This works fine, but my tabledit icons disappear (when visible) and I cannot see the icons for edit / add.
If I remove the jquery on the above div, I get the icons back.
The tableedit div's are inside the wrap div.
I used Example #1 in tableedit.
Hi I hope you can help me. I have a jquery that hides div on a condition if(search === ''){ $("#wrap").css('visibility', 'hidden'); }else{ $("#wrap").css('visibility', 'visible'); }
}); This works fine, but my tabledit icons disappear (when visible) and I cannot see the icons for edit / add.
If I remove the jquery on the above div, I get the icons back. The tableedit div's are inside the wrap div. I used Example #1 in tableedit.
Any suggestions. Thanks