Click here to Skip to main content
15,901,205 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi to all,
I want code for the button which is clicked keeps highlighted until another button is clicked in asp.net.


Thanks in advance.
Posted

1 solution

XML
<head runat="server">
    <title></title>
    <script type="text/javascript">
        function ButtonHeighlight(documentObj) {
            var btnClicked=document.getElementById(documentObj);

            var btn1 = document.getElementById('btn1');
            var btn2 = document.getElementById('btn2');

            btn1.style.backgroundColor = 'White';
            btn2.style.backgroundColor = 'White';


            btnClicked.style.backgroundColor = 'Blue';

            return false;
        }
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>

        <input id="btn1" type="button" name="name" value="Button 1" onclick="ButtonHeighlight(this.id)" />
          <input id="btn2" type="button" name="name" value="Button 2"  onclick="ButtonHeighlight(this.id)"  />
    </div>

    </form>
</body>
 
Share this answer
 
Comments
Tarun Mangukiya 18-Dec-12 1:59am    
Ya. On mouse click, set all button to initial color value and just set a specific color to this control.

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