- jQuery - The de-facto library for the modern age. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.
- Backbone - Backbone.js gives structure to web applications by providing models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.
- AngularJS - Conventions based MVC framework for HTML5 apps.
- Underscore - Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby), but without extending any of the built-in JavaScript objects.
- lawnchair - Key/value store adapter for indexdb, localStorage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var meSentence = "This is a test sentence and it is not the sentence we will ultimately test with"; | |
| // Create array | |
| var meIndex = meSentence.replace(/[.,;'"]/, "").toLowerCase().split(" "); | |
| // Instantiate object | |
| var me = {}; | |
| // Tally wordcount | |
| for (var i = 0; i < meIndex.length; i++) { | |
| me[meIndex[i]] = 1; | |
| for (var j = 0; j < i; j++) { | |
| if (meIndex[i] == meIndex[j]) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="support_form"> | |
| <h4>Who would you like to contact?</h4> | |
| <div class="looking_for"> | |
| <label>I’m looking for:</label> | |
| <select id="contact_type"> | |
| <option>Select Contact Type</option> | |
| <option>Area Sales Managers</option> | |
| <option>Customer Support Managers</option> | |
| <option>Dealer & Service Center</option> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="featured cycle-slideshow" data-cycle-slides=".slide" data-cycle-pause-on-hover="true" data-cycle-timeout=7000 data-cycle-fx="scrollHorz"> | |
| <ul class="slide popup-gallery clearfix"> | |
| <li class="title"><h3>Transforming Business Aircraft</h3></li> | |
| <li><a href="/assets/images/gallery-big-image-1.jpg" style="background: url('/assets/images/gallery-image-1.jpg')"><h5>View Image</h5></a></li> | |
| <li><a href="/assets/images/gallery-big-image-2.jpg" style="background: url('/assets/images/gallery-image-2.jpg')"><h5>View Image</h5></a></li> | |
| <li><a href="/assets/images/gallery-big-image-3.jpg" style="background: url('/assets/images/gallery-image-3.jpg')"><h5>View Image</h5></a></li> | |
| <li><a href="/assets/images/gallery-big-image-4.jpg" style="background: url('/assets/images/gallery-image-4.jpg')"><h5>View Image</h5></a></li> | |
| <li><a href="/assets/images/gallery-big-image-5.jpg" style="background: url('/assets/images/gallery-image-5.jpg')"><h5>View Image</h5></a></l |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="ctl11_ctl00_MainNavRepeater_ctl01_SubMenuPanel" class="subnav"> | |
| <ul class="clearfix" style="text-align: left;"> | |
| <li style="margin-left: 101px;"><a href="/business-aviation/featured-products">Featured Products</a></li> | |
| <li ><a href="/business-aviation/platforms">Platforms</a></li> | |
| <li ><a href="/business-aviation/transform-your-aircraft">Transform Your Aircraft</a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* -------------- Customer Success Stories - Sub-Layouts ----------------------- */ | |
| div.success_section { padding:0 0 20px 0; margin:0 0 20px 0; border-bottom:1px solid #dfdfdf; } | |
| div.success_section:last-child { border:none; } | |
| div.success_section h2 { margin:0 0 40px 0; } | |
| div.success_section a.all_products_link { display:block; margin:25px 0; font-size:14px; color:#ee3124; font-weight:bold; } | |
| div.success_section a.view_all { clear:both; float:right; font-size:11px; text-align:right; color:#3b87de; } | |
| div.success_block div.pic { margin:0 10px 20px 0; width:210px; float:left; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // A function that takes the total number of rows, the total number of columns, oddOrder and evenOrder arrays and an object inputDataObject that contains the arrays to be used as input data. | |
| // The structure of the order arrays must be ["inputData1","inputData2","inputData3"] | |
| function renderAlternatingGrid (totalRowNumber, totalColumnNumber, oddOrder, evenOrder, inputDataObject) { | |
| var alternatingGrid = []; | |
| for (var rowIndex = 0; rowIndex < totalRowNumber; rowIndex++) { | |
| alternatingGrid[rowIndex] = []; | |
| function orderRowElements (order) { | |
| for (var columnIndex = 0; columnIndex < totalColumnNumber; columnIndex++) { | |
| var dataKey = order[columnIndex]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // A utility method that finds the sum of numbers at odd indexes within a sub- | |
| // array starting with startIndex and ending at endIndex | |
| public static int computeSumAtOdd(int[] numbers, int startIndex, int endIndex) | |
| { | |
| if (startIndex == endIndex) // base case: array of size 1, returns number if index odd | |
| { | |
| if (startIndex%2 == 1) | |
| return numbers[startIndex]; | |
| else | |
| return 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery.extend = jQuery.fn.extend = function() { | |
| var options, name, src, copy, copyIsArray, clone, | |
| target = arguments[0] || {}, | |
| i = 1, | |
| length = arguments.length, | |
| deep = false; | |
| // Handle a deep copy situation | |
| if ( typeof target === "boolean" ) { | |
| deep = target; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
OlderNewer