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
/** | |
* use cURL to get the contents on a remote page uses redirect headers | |
* necessary when local server does not allow location | |
*/ | |
function curl($url,$recursive_attempt=0){ | |
if (!function_exists('curl_init')) { return false; } | |
$content = false; | |
$can_follow = ( ini_get('safe_mode') || ini_get('open_basedir') ) ? false : true; //cURL can't follow redirects in safe mode or if open_basedir is on |
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
/** | |
* formatted as: array("2-letter state code" => "State Name") | |
* | |
* example usage: | |
* <select> | |
* <?php $selected = "CT"; //default to this selected state | |
* foreach( $stateList as $code => $state_name ){ ?> | |
* <option value="<?=$code ?>" <?=($selected==$code) ? " SELECTED" : "" ?> ><?=$state_name ?></option> | |
* <? } ?> | |
* </select> |
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
<script> | |
/** | |
* Show the time and update it every second | |
* | |
* clock_id (string) DOM id value of element to update | |
* offset (int) Optional value to modify local time by, usefull if synchronizing to another clock | |
*/ | |
function clock(clock_id, offset) | |
{ | |
if(offset == null || offset == ""){ offset = 0; } |
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
/** | |
* Return a formated string from a date Object mimicking PHP's date() functionality | |
* | |
* format string "Y-m-d H:i:s" or similar PHP-style date format string | |
* date mixed Date Object, Datestring, or milliseconds | |
* | |
*/ | |
function dateFormat(format,date){ | |
if(!date || date === "") |
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
<div> | |
<textarea id="myTextarea" class="lengthcount" maxlength="150"></textarea> | |
</div> | |
<div> | |
<input type="text" id="myInput" class="lengthcount" maxlength="40"> | |
</div> | |
<script type="text/javascript"> | |
function charCount(element) |
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
<input type="text" placeholder="sample text"> | |
<script> | |
function hasPlaceholder() | |
{ | |
var psuedoInput = document.createElement("input"); | |
return "placeholder" in psuedoInput | |
} | |
$(document).ready(function(){ |
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 | |
$url = "https://maps.googleapis.com/maps/api/geocode/xml?sensor=false&address=" . urlencode($_GET['addr']); | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_URL, $url); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
$raw_xml = curl_exec($ch); | |
curl_close($ch); | |
$xml = new SimpleXMLElement($raw_xml); |
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
/** | |
* display a styled jQuery UI dialog box in place of the native javascript alert() | |
* | |
* message string HTML message to display | |
* title string optional title text to display in header of confirmation box | |
* callback function optional function to trigger when user clicks "OK" | |
* | |
*/ | |
function uiAlert(settings) | |
{ |
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
javascript: void((function(d) { | |
var modalblock = document.getElementById("reg-overlay"); | |
modalblock.parentElement.removeChild(modalblock); | |
var style = document.createElement('style'); | |
style.type = 'text/css'; | |
style.innerHTML = 'body,html { overflow: auto !important; }'; | |
d.getElementsByTagName("head")[0].appendChild(style); | |
})(document)); |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
OlderNewer