vote up 1 vote down star

This is what I have

On my .master page i have the following

<script type="text/javascript">
$(document).ready(function() {
    $(this).hover(function() {
        $(this).addClass("ui-state-hover");
    },
		function() {
		    $(this).removeClass("ui-state-hover");
		}
	).mousedown(function() {
	    $(this).addClass("ui-state-active");
	})
	.mouseup(function() {
	    $(this).removeClass("ui-state-active");
	});
});

and my asp.net buttons are declared as follows

<asp:button runat="server" id="cmdSubmitShipmentRequest" cssclass="ui-button ui-state-default ui-corner-all" text="Submit" />

The expected behavior is that any time the mouse pointer hovers in and out of any button the above declared css classes are added and removed. Currently the default css properties apply properly but any time I hover in and out of a button I get the following error "Object Expected" Line 11 (IE8 other browsers display nothing), which is the position where the "<script type="text/javascript">" begins.

any clue as to what I may be doing wrong?

EDIT WITH ANSWER


I was doing two things wrong

  1. I was using $(this).hover should of been $('.ui-button').hover which I had initially but I typed it as $(".ui-button").hover NOTICE THE DOUBLE QUOTES!

  2. On my .master page I am declaring my javascript using the asp.net javascript manager as follows

the problem was that I had the script declarations below my javascript code block!.

In the end this is what the javascript and code block look like and all works well as expected.

<asp:scriptmanager id="scriptManager" runat="server">
    <scripts>
        <asp:scriptreference path="~/javascript/jquery-1.3.2.min.js" />
        <asp:scriptreference path="~/javascript/jquery-ui-1.7.2.custom.min.js" />
        <asp:scriptreference path="~/Javascript/thickbox.js" />
    </scripts>
</asp:scriptmanager>

 <script type="text/javascript">
     $(document).ready(function() {
         $('.ui-button').hover(function() {
             $(this).addClass("ui-state-hover");
         },
    		function() {
    		    $(this).removeClass("ui-state-hover");
    		}
    	).mousedown(function() {
    	    $(this).addClass("ui-state-active");
    	})
    	.mouseup(function() {
    	    $(this).removeClass("ui-state-active");
    	});
     });
</script>
flag
$(this).hover(...). What is this in this context? Are you trying to apply this to the buttons only or to the document? Typo? – Jimmy Chandra Jul 17 at 16:45

3 Answers

vote up 3 vote down check

Try changing your code to this....

$(document).ready(function() {
    //SELECT THE .ui-button CLASS INSTEAD OF this
    $('.ui-button').hover(function() {
        $(this).addClass("ui-state-hover");
    },
                function() {
                    $(this).removeClass("ui-state-hover");
                }
        ).mousedown(function() {
            $(this).addClass("ui-state-active");
        })
        .mouseup(function() {
            $(this).removeClass("ui-state-active");
        });
});

I do not believe that "this" has the context that you were targeting when you use this line of code...

$(this).hover(function() {

Try replacing the line above with the following...

$('.ui-button').hover(function() {
link|flag
I had used "ui-button" in the past but I used double quotes rather then single quotes! also i had the above JavaScript code above my jquery declarations, also thank you for the prompt response – martinezgeovani Jul 17 at 16:56
double quotes would work too, the key here is the . on ".ui-button" – John Boker Jul 17 at 19:52
vote up 1 vote down

In your current code snippet, $(this) is referring to $(document). Try this:

$(document).ready(function() {  
    $('.ui-button').hover(function() {  
        $(this).addClass("ui-state-hover");  
    }, <rest of code omitted>
}

Now $(this) is referring to $('.ui-button'), which is what you want.

link|flag
vote up 1 vote down

would this give you more of what you want?

also, make sure you're including the jquery library somewhere above this.

$(document).ready(function() {
    $('.ui-button').hover(function() {
        $(this).addClass("ui-state-hover");
    },
                function() {
                    $(this).removeClass("ui-state-hover");
                }
        ).mousedown(function() {
            $(this).addClass("ui-state-active");
        })
        .mouseup(function() {
            $(this).removeClass("ui-state-active");
        });
});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.