14 Days of jQuery – Marketing Campaign
14 Days of jQuery and the New API Browser Beginning on January 14th, we’ll start a fourteen-day event. Each day we’ll have fresh videos and announcements — there’ll be code releases,...
View ArticlejQuery 1.4 Released
In celebration of jQuery’s 4th birthday, the jQuery team is pleased to release the latest major release of the jQuery JavaScript library! A lot of coding, testing, and documenting has gone into this...
View ArticleQuick intro into the Google Web Toolkit
So, what is the Google Web Toolkit(GWT)? Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. Its goal is to enable productive development...
View ArticlejQuery .load with MVC 2/3 PartialViews
Ever wanted to re-use or re-load part of your page via AJAX with MVC 2/3. There is a really simple way to achieve this with PartialViews and jQuery’s .load() function. 1. Create a PartialView 2. Add...
View ArticleMy 2011 Web Debugging Toolkit
Firebug IE Devopeler Toolbar Google Chrome Developer Tools ASP.NET Routing Debugger Fiddler2
View ArticlePostback UpatePanel on close of jQuery dialog
Put a hidden asp:button within the UpdatePanel or outside and set it as an AsyncPostBackTrigger. Call the js function from ItemDataBound if needed, passing in the ClientID of the hidden asp:button....
View ArticleBuilding a demo chat app in MVC3, backbone.js and a little SignalR for fun…
I have been doing a lot of reading lately on backbone.js. One of the key features I wanted to explore was it’s concept of Models and how it keeps the server side in sync with RESTful JSON endpoints....
View ArticleUsing ucajax to render UserControls via WCF
I recently released an open source project called ucajax hosted on GitHub and also available via NuGet. The project’s main purpose is to render ASP.NET UserControls via web services, currently...
View ArticleHow to get script tags with jQuery .find from ajax result
$.ajax({ type: "GET", dataType: 'html', contentType: 'application/x-www-form-urlencoded', url: '/url', success: function (data) { //have to replace script or else jQuery will remove them var...
View ArticleHow to set the ASP.NET Form Action with jQuery Mobile AJAX requests that...
A major problem I have had with using ASP.NET and jQuery Mobile is that jQuery Mobile turns most requests into an AJAX call. It’s very cool, and it is the crux of the framework, also is what makes it...
View Article