$.focus() not working

Actually the example you gave for focusing on this site works just fine, as long as you’re not focused in the console. The reason that’s not working is simply because it’s not stealing focus from the dev console. If you run the following code in your console and then quickly click in your browser window … Read more

Animate element transform rotate

As far as I know, basic animates can’t animate non-numeric CSS properties. I believe you could get this done using a step function and the appropriate css3 transform for the users browser. CSS3 transform is a bit tricky to cover all your browsers in (IE6 you need to use the Matrix filter, for instance). EDIT: … Read more

jQuery ajax error function

I have an ajax call passing data to a page which then returns a value. I have retrieved the successful call from the page but i have coded it so that it raises an error in the asp. How do i retrieve that error from the jquery? For example: It’s the error bit that I … Read more