<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Hightechnology Tutorials</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js">
</script>
<script type="text/javascript">
$(document).ready(function () {
$('INPUT[type="text"]').focus(function () {
$(this).addClass("colors");
});
$('INPUT[type="text"]').blur(function () {
$(this).removeClass("colors");
});
});
</script>
<style type="text/css">
.colors {
border: 1px solid black;
background-color: #f7d0fb;
}
</style>
</head>
<body>
<form id="Hightech" runat="server">
<div>
<table>
<tr>
<td><b>Name:</b></td>
<td><asp:TextBox ID="Name" runat="server"/></td>
</tr>
<tr>
<td><b>Email:</b></td>
<td><asp:TextBox ID="Email" runat="server"/></td>
</tr>
</table>
</div>
</form>
</body>
</html>
OOPs,ASP.NET,C#,VB.Net,SQL Server-2005,2008,2012,Java Script,Jquery,Ajax,Linq,WCF,Window Services etc. related Interview Questions/Answer,programming solution and Articles.
Wednesday, 27 November 2013
TextBox Background Color Change On Focus Using JQuery
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment