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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>JavaScript Assignment 3: Jonathan Waxman</title> | |
</head> | |
<body> | |
<table border="1" width="100%" height="550"> | |
<tr> | |
<th colspan="2" bgcolor="navy" style="color:white"> | |
<h1>JW's Electronic Post - eCommerce</h1> |
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 patch for HTML5 elements using innerShiv by https://github.com/andy-clusta | |
(function ($) { | |
var init = jQuery.fn.init; rootjQuery = jQuery(document); | |
// http://jdbartlett.github.com/innershiv | WTFPL License | |
var innerShiv = (function() { | |
var div, frag, | |
inaTable = /^<(tbody|tr|td|col|colgroup|thead|tfoot)/i, | |
remptyTag = /(<([\w:]+)[^>]*?)\/>/g, | |
rselfClosing = /^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i, |
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 lookup = {} | |
var testObj = {'test':true}; | |
lookup[testObj] = expensiveFunc(testObj); |
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 Browser Plugin | |
* Version 2.4 | |
* 2010-02-03 | |
* URL: http://jquery.thewikies.com/browser | |
* Description: jQuery Browser Plugin extends browser detection capabilities and can assign browser selectors to CSS classes. | |
* Author: Nate Cavanaugh, Minhchau Dang, Jonathan Neal, & Gregory Waxman | |
* Copyright: Copyright (c) 2008 Jonathan Neal under dual MIT/GPL license. | |
* JSLint: This javascript file passes JSLint verification. |
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
using SquishIt.Framework.Css; | |
using SquishIt.Framework.JavaScript; | |
namespace SquishIt.Framework | |
{ | |
public class Bundle | |
{ | |
public static IJavaScriptBundle JavaScript(bool forceRelease = false) | |
{ | |
return new JavaScriptBundle(forceRelease); |
NewerOlder