Click here to Skip to main content
16,004,678 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a website containing various links(anchors) in a row....

My aim is to bold and underline the link clicked by the user at run time by adding some styles on it on the fly

so kindly give me some sample code of how to do that?
Posted
Updated 11-Jan-12 6:44am
v2

1 solution

This is one good way to do it. Use JQuery to Decorate Links[^]
 
Share this answer
 
Comments
Mohammad Azeem 11-Jan-12 12:53pm    
i have followed the link and make something like this:
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<script src="Scripts/jquery-ui.min.js" type="text/javascript"></script>
<script src="Scripts/jquery.min.js" type="text/javascript"></script>
<title></title>
<script type="text/javascript">
$(document).ready(function () {
$(document).find('a').click(function () {
$(this).css("font-weight", "bold");
});
});
</script>
<style type="text/css">
</style>
</head>
<body>
<form id="form1" runat="server" >
<div>
SImple
</div>
</form>
</body>
</html>
But the problem i am facing with it...

When ever the is clicked than my link becomes bold for just a fractions of seconds and after the page reloads or navigates to the link given in href the boldness dissappears..............

Even if the href points to the same page
fjdiewornncalwe 11-Jan-12 13:44pm    
When a page is posted back, you will lose anything in your page state unless you keep track of those values either through the postback or through cookies, etc.
Mohammad Azeem 11-Jan-12 13:57pm    
@Marcus Kramer so plz tell me some sort of solution to fix this problem
fjdiewornncalwe 11-Jan-12 16:42pm    
I already did. Use either a cookie set using javascript to control the current state of the link, or use the code behind to maintain knowledge of the link's state between calls.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900