Search Results

2
votes

jsonp request not working in firefox

JSONP is something that needs to be supported on the server. I can't find the documentation, but it appears that, if Reddit supports JSONP, it's not with the jsoncallback query variable. Wh …
2
votes

ASP.NET MVC and JQuery get info to controller

It has to do with the way you're structuring your request. Your JQuery call is sending the data to the AddLink action on the User controller as POST data, which means in your C# code, you'll access …
1
vote

JQuery $.ajax “async: false” bug?

You're encountering a scoping problem here. The URL variable in your JS code is declared as via the var keyword inside the scope of the download function. This means that only code inside the downl …
2
votes

Graceful degradation of anchor tags with javascript

Simple, don't use the javascript: URI syntax as the href, at least, not in the HTML delivered to the client. Deliver the HTML from the server with the href taking the user to whatever page …
27
votes

What good is JSLint if jQuery fails the validation

JSLint tests one particular person's (Douglas Crockford) opinions regarding what makes good JavaScript code. Crockford is very good, but some of his opinions are anal retentive at best, like the un …
1
vote

Is there any good way to convert existing YUI based scripts into JQuery code?

I use YUI (2 and 3) with all my ASP.NET MVC code, there is nothing not "MVC-Friendly" in YUI. That said, and assuming you're using YUI2 (YUI3 has more similarity to JQuery), it's not necess …
0
votes

Advice “upgrading” from jQuery 1.2.6 to YUI 3?

While Matt Sweeney was working on Sizzle integration into YUI3, the last I heard of the project was that it was temporarily on hold due to the pretty severe filesize bump Sizzle introduced. I belie …
5
votes

What is a good yui replacement for jquery.live

In YUI3, delegates perform this function. The following snippet will fire a method called "clickHandler" on any 'p' tag …
2
votes

Javascript show layer on page load

jQuery tends to use camelCase for it's function names (per accepted JavaScript best practices). As such, the first word of the function name would be lowercase with each subsequent word being Title …