Using JQuery with .NET 1.1 web app -
I added the jquery js file to a web page in the .NET 1.1 web app.
Added this script
& lt; Script type = "text / javascript" & gt; $ (Function () {$ ("Input"). Blur (function () {$ (this) .attr ("background-color", "# 000000");});}); & Lt; / Script & gt; But when I close a text box, then nothing happens.
Should it work properly in 1.1 ??
Malcolm
You do not have to use attr:
$ (this) .css ("color", "# 000000");
Comments
Post a Comment