Forums

Full Version: This script can be used for link after hovering mail get highlighted by underline.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
var a=sdk.getWidget( 'label179' ).m_componentid;
$("#"+a).hover(function(){
$(this).css("text-decoration", "underline");
}, function(){
$(this).css("text-decoration", "None");
});