on my Master page I am applying the CSS to selected link in the accordion panel. But once I click the button page getting refreshed and I am loosing my CSS. is there anyway we can still keep the class applied on the selected link ( or Highlight the selected link) after the page refresh?
$(document).ready(function () {
$('#accordian li').click(function () {
var href = $(this).addClass("active1").children("a").attr("href");
});
});