Posts

An Introduction to AngularJS

Image
Here is the beginning of my post. And here is the rest of it.

Creating own css grid system - 6 column grid/12px gutter/ responsive

creating own css grid system - 6 column grid/12px gutter/ responsive

CSS hack for Safari 5+ only NOT Chrome

Image
There is a way to filter Safari 5+ from chrome JS Bin

Building a Single Page Application with ASP.NET and AngularJS

Great session, good speakers! The source code is here:  https://github.com/jongalloway/Angular-and-ASPNET-Build2014

Passing data to Bootstrap 3 Modal

Image
Here is the beginning of my post. Passing data to Bootstrap 3 Modal JS Bin

Here’s the template code I use when creating a new plugin:

Here is the beginning of my post. And here is the rest of it. /*! * jQuery plugin * What does it do */ (function($) { $.fn.PlugInName = function(opts) { // default configuration var config = $.extend({}, { opt1: null }, opts); // main function function DoSomething(e) { } // initialize every element this.each(function() { DoSomething($(this)); }); return this; }; // start $(function() { $("#select").PlugInName(); }); })(jQuery);

Workings of Browsers

Image
Probably the best indepth article to explain the workings of Browsers I have seen to date.  Must read by all web developers.. http://www.html5rocks.com/en/tutorials/internals/howbrowserswork