I'm trying to disable two anchor tags and I can't get the underline removed. I'd like to also remove the blue color. Here's what I have an it's not removing the underline. I've tried text-decoration set to none and none !important
$(document).ready(function ()
{
// See if doc upload View and Remove panel is displayed --> do they currently have a document uploaded
var isInline = $("#ctl00_contentMain_pnlAuthorizationForReleaseViewUploadDocument").css('display');
// if so disable upload and electronic sig links
if (isInline == "inline")
{
//Disable Upload Link after document is uploaded
$("#ctl00_contentMain_btnUpload").attr('onclick', '').click(function (e) {
e.preventDefault();
});
$("#ctl00_contentMain_btnUpload").attr('href', '');
$("#ctl00_contentMain_btnUpload").attr('text-decoration', 'none !important');
//Disable Electronic Sign Link after document is uploaded
$("#ctl00_contentMain_lnkESign").attr('onclick', '').click(function (e) {
e.preventDefault();
});
$("#ctl00_contentMain_lnkESign").attr('href', '');
$("#ctl00_contentMain_lnkESign").attr('text-decoration', 'none !important');
}
});
Here is aspx code
<asp:LinkButton ID="lnkESign"
runat="server"
Text="sign"
TabIndex="1"
OnClick="lnkESign_Click">
<asp:LinkButton ID="lnkDownloadReleasefrm" runat="server" Text="Download"
TabIndex="1"></asp:LinkButton>
Which renders this HTML
<a id="ctl00_contentMain_lnkESign" href="" tabindex="1" onclick="" text-decoration="none !important">sign</a>
<a href="" tabindex="2" id="ctl00_contentMain_btnUpload" onclick="" text-decoration="none !important">Upload </a>
edit
here's the code that i ended up using
$("#ctl00_contentMain_btnUpload").attr('href', '').css('text-decoration', 'none').css('color', 'black').attr('onclick', '').click(function (e) {
e.preventDefault();
});
$("#ctl00_contentMain_lnkESign") $("#ctl00_contentMain_btnUpload")in single variables instead of always requesting them to the DOM. – fmsf Jan 3 at 19:51