Nick Riggs, Web Developer

Making stuff up about web development since last week.

6 February 2012

Subscribe to our RSS feed

Currently browsing JavaScript

Building Cross-Platform Apps Using jQuery Mobile

Posted in JavaScript, Mobile April 21, 2011

jQuery Mobile introduces a cross-platform and cross-device framework for developing mobile applications. It supports a wide variety of mobile browsers and delivers a unified user interface to the devices. It has simplified working with mobile browsers by abstracting away inconsistences between the vendors. Just as jQuery changed the way we wrote JavaScript, jQuery Mobile will change the way we build mobile web applications

Client Side Model-Aware Validation

Posted in ASP.NET, Foolproof, JavaScript June 18, 2010

In a previous post, we built a model-aware validator using Foolproof for ASP.NET MVC. Now, it’s time to create the client side version because posting back sucks.

Render Your Model With Client Side jQuery Templates Instead of ASP.NET MVC Partial Views

Posted in ASP.NET, JavaScript May 25, 2010

Stop writing render code in multiple places in your ASP.NET MVC ajax applications. Learn how to push your model to the browser and use jQuery to bind it to templates.

A Simple ForEach Loop Solution for JavaScript

Posted in JavaScript September 15, 2009

Create “foreach” functionality in JavaScript using an Array prototype function

Post Complex JavaScript Objects to ASP.NET MVC Controllers

Posted in ASP.NET, JavaScript August 21, 2009

Use the plug-in postify.js to handle posting complex JavaScript objects to ASP.NET MVC controllers using the default model binder

Simple AJAX Polling Plugin for jQuery

Posted in ASP.NET, JavaScript August 10, 2009

Implement a simple jQuery plugin that simplifies AJAX-based polling in your web applications

Clean Up the setTimeout Function

Posted in JavaScript July 23, 2009

Create a prototype function to make delaying function execution more readable