-
Recent Posts
Recent Comments
Archives
Categories
Meta
Tag Archives: jquery
Dev: Visual Studio 2013 Single Page Application with BackBoneJS
Introduction: As part of my exploration from the last blog post I have been digging into BackBoneJS. Here I take a look at getting started with BackBoneJS in a Microsoft environment. Ultimately, I don’t think this is a very clean … Continue reading
Posted in Uncategorized
Tagged asp.net mvc, BackboneJS, css3, html5, Javascript, jquery, Mailchimp, MVC, Single Page Application, SPA, Visual Studio 2013
2 Comments
Django & Python Adventure Part 6
Today I am going to focus on incorporating JQuery into Django. If you’re following along this is material covered in chapter 6 of Ayman Hourieh’s “Django 1.0 Web Site Development”. The book was published in March 2009, so this will … Continue reading
JQuery Addon: Masked Date Input
Simple, elegant, and effective date inputs. The following example is mocked up as an age verification, but just to show how to do custom validation. <!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”> <html lang=”en”> <head> <link href=”http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css” rel=”stylesheet” type=”text/css” /> … Continue reading
JQuery Addons: dataTables (a JQuery GridView)
As a .Net developer who likes a screaming fast user interface, programming in .Net can be frustrating if you are one of the teeming millions that use a GridView. Perhaps you’ve dabbled in .Net extensions over the years such as … Continue reading
jQuery to Web Service AJAX
jQuery to Web Service AJAX This is a bit wacky, but in the end it all makes perfect sense. jQuery has two functions you could use: get and put, but the function you’ll end up using is.ajax. Example: Let’s say … Continue reading