Hi
I have a RadTabStrip control on the page, inside page, I just jquery to add css
to highlight several fields, but it seems not working at all. here is my code
snippet
JS code:
$(document).ready(function() {
$("#<%=btnSaveDefaultReply.ClientID%>").hover(
function () {
$(".btnSaveDefaultReply").addClass("actionhighlight");
},
function () {
$(".btnSaveDefaultReply").removeClass("actionhighlight");
}
)
});
Html code:
<telerik:RadPageView ID="pMisc" runat="server">
<br />
<table border="0" cellpadding="5" cellspacing="5" width="450px">
<tr>
<td colspan="3">
<strong>Default Reply Name and Email</strong>
</td>
</tr>
<tr class="dd btnSaveDefaultReply" id="test">
<td class="label">
Default Reply Email:
</td>
.......
I have a RadTabStrip control on the page, inside page, I just jquery to add css
to highlight several fields, but it seems not working at all. here is my code
snippet
JS code:
$(document).ready(function() {
$("#<%=btnSaveDefaultReply.ClientID%>").hover(
function () {
$(".btnSaveDefaultReply").addClass("actionhighlight");
},
function () {
$(".btnSaveDefaultReply").removeClass("actionhighlight");
}
)
});
Html code:
<telerik:RadPageView ID="pMisc" runat="server">
<br />
<table border="0" cellpadding="5" cellspacing="5" width="450px">
<tr>
<td colspan="3">
<strong>Default Reply Name and Email</strong>
</td>
</tr>
<tr class="dd btnSaveDefaultReply" id="test">
<td class="label">
Default Reply Email:
</td>
.......