This script can be used for link after hovering mail get highlighted by underline. - Printable Version +- Forums (https://bdn.bdb.ai) +-- Forum: BDB Knowledge Base (https://bdn.bdb.ai/forumdisplay.php?fid=13) +--- Forum: BDB Dashboards Designer (https://bdn.bdb.ai/forumdisplay.php?fid=43) +---- Forum: BDB Designer Q & A (https://bdn.bdb.ai/forumdisplay.php?fid=16) +---- Thread: This script can be used for link after hovering mail get highlighted by underline. (/showthread.php?tid=623) |
This script can be used for link after hovering mail get highlighted by underline. - Asma M - 12-23-2022 var a=sdk.getWidget( 'label179' ).m_componentid; $("#"+a).hover(function(){ $(this).css("text-decoration", "underline"); }, function(){ $(this).css("text-decoration", "None"); }); |