This file contains 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({ | |
parseQuerystring: function(){ | |
var nvpair = {}; | |
var qs = window.location.search.replace('?', ''); | |
var pairs = qs.split('&'); | |
$.each(pairs, function(i, v){ | |
var pair = v.split('='); | |
nvpair[pair[0]] = pair[1]; | |
}); | |
return nvpair; |
This file contains 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
<dl class="accordion"> | |
<dt>Accordion Heading 1</dt> | |
<dd> | |
<p>Some content</p></dd> | |
<dt>Accordion Heading 2</dt> | |
<dd> | |
<p>Some more content</p></dd> | |
<dt>Accordion Heading 3</dt> | |
<dd> | |
<p>Some final content</p></dd> |
This file contains 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
if (typeof jQuery != "undefined") { | |
(function($) { | |
$('.accordion dt').each(function() { | |
$(this).on('click', function(){ | |
$(this).toggleClass('on').siblings('.on').removeClass('on').end() | |
.next('dd').slideToggle().siblings('dd').slideUp(); | |
}).next('dd').hide(); | |
}); | |
})(jQuery); | |
} |
This file contains 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
$.fn.textSummary = function (options, callback) { | |
var settings = { | |
maxlength: 150, | |
morechar: "…" | |
}; | |
$.extend(true, settings, options); | |
return this.each(function () { | |
var $context = $(this).hide().append($('<a>', { |
This file contains 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
<? | |
//include('dbconfig.inc.php'); | |
//include('db.class.php'); | |
//include('simplehtmldom/simple_html_dom.php'); | |
$availableTeams = array("ARI","ATL","BAL","BOS","CIN","CHC","CHW","CLE","COL","DET","FLA","HOU","KCR","LAA","LAD","MIL","MIN","NYM","NYY","OAK","PHI","PIT","SD","SF","SEA","STL","TB","TEX","TOR","WSN"); | |
foreach($availableTeams as $availableTeam) | |
{?> | |
<a href='batters.php?team=<?=$availableTeam?>'><?=$availableTeam?></a> | | |
<?}?> |
This file contains 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
(function ($) { | |
/** | |
* | |
*/ | |
$.fn.pushSlider = function (options, callback) { | |
var settings = { | |
initialSlide: 0, | |
duration: 840 | |
}; | |
$.extend(true, settings, options); |
This file contains 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
(function($){ | |
$('ul').each(function() { | |
var $lis = $('li', this); | |
cols = [], | |
colNum= 4, | |
colLength = Math.ceil($lis.length / colNum), | |
$newList = $('#columnify'); | |
for(var i = 0; i < colLength; i++){ | |
cols.push($('<ul>').appendTo($newList)); | |
} |
This file contains 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
$.validator.addMethod("similarity", function(value, element, params){ | |
var acceptable = .25; | |
function mush(str){ | |
str = str.replace(/[ \?|\.|!|\(|\)|\\|\/]/g, '').toLowerCase(); | |
var arr = []; | |
for(var i = 0; i <= str.length - 1; i++){ | |
arr.push(str[i]); | |
} | |
return arr.sort(); |
This file contains 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
<h1>heading <code><h1></code></h1> | |
<h2>heading <code><h2></code></h2> | |
<h3>heading <code><h3></code></h3> | |
<h4>heading <code><h4></code></h4> | |
<h5>heading <code><h5></code></h5> | |
<h6>heading <code><h6></code></h6> | |
<hr /> | |
<p>The <a href="#">a element </a> example <code><a href="#"></code><br /> | |
The <abbr title="Title text">abbr element</abbr> example <code><abbr title=""></code><br /> | |
The <b>b element</b> example <code><b></code><br /> |
This file contains 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
<?php | |
ini_set( 'display_errors', 1 ); | |
error_reporting( E_ALL ); | |
// Make a bit, honkin test array | |
// You may need to adjust this depth to avoid memory limit errors | |
$testArray = fillArray( 0, 5 ); | |
// Time json encoding |
OlderNewer