onmouseover
-
hi please help me i am using onmouseover event in my aspx page. i want to give two property in my single onmouseover event that is like below code: onmouseover="this.className='opaque'; this.bgColor='<%=Session["BackColor"]%>';" it is correct or not it is not working please help me..
with regards, bretto
-
hi please help me i am using onmouseover event in my aspx page. i want to give two property in my single onmouseover event that is like below code: onmouseover="this.className='opaque'; this.bgColor='<%=Session["BackColor"]%>';" it is correct or not it is not working please help me..
with regards, bretto
I guess your code is wrong. Create a separate JS function and give it there.
function doMouseOver(obj){
obj.className='opaque';
obj.bgColor='<%=Session["BackColor"]% >
}onmouseover=doMouseOver(this)
Hope it helps
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia How to use google | Ask smart questions