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
$.each( $("input[type=text]:visible"), function(){ | |
$(this).val() == "" ? $(this).val( Math.random() * 5000 ) : ""; | |
}); |
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
alert( encodeURIComponent( prompt("Enter the URI:","") ) ); |
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
/* | |
http://stackoverflow.com/a/4407335/448640 | |
*/ | |
-webkit-touch-callout: none; | |
-webkit-user-select: none; | |
-khtml-user-select: none; | |
-moz-user-select: none; | |
-ms-user-select: none; | |
user-select: none; |
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
" Find all closing tags, add a linebreak after each grouping. | |
" This is useful when your whole HTML file has had the whitespace removed by a rogue WYSIWYG editor. | |
" NOTE: I don't think this .vim file would actually work in vim. I just gave it that extension for Gist's sake. | |
:%s@\(<\/\w\{1,10\}>\)\+@&\r@gc | |
" command explanation below | |
" : begin command | |
" % use all lines in file | |
" s search and replace |
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
//From http://www.robertmullaney.com/2011/08/29/prevent-flash-of-unstyled-content-fouc-jquery/ | |
//I have a project which uses jQuery UI for tables (formatting), buttons, tabs, etc. Even though my local resources and remotely hosted ones are saved in the browser’s cache, I still have situations where a FOUC (Flash of Unstyled Content) occurs. | |
//Here is a simple solution… | |
$(function() { | |
$('body').hide(); | |
$(window).load(function(){ | |
$('body').show(); | |
}); | |
}); |
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
REM These commands allow you to dump a mysql database or import a database that is too large to be uploaded via PHPmyAdmin. | |
REM If importing, you should put your .sql file in your mysql bin dir ( for wamp: C:\wamp\bin\mysql\mysql15.5.20\bin\ ) | |
REM If exporting, the mysql bin dir is where the exported file will show up. | |
REM export a mysql database | |
REM wamp's username is root, does not have a password | |
mysqldump -u username -p password(optional) databasename > databasename.sql | |
REM import a mysql database | |
mysql -u username -ppassword databasename < databasename.sql |
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
; | |
// attribute test by Jeremy Keith, http://www.abookapart.com/products/html5-for-web-designers | |
function elementSupportsAttribute( element, attribute ){ | |
var test = document.createElement(element); | |
if (attribute in test){ | |
return true; | |
} else { | |
return false; | |
} |
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
a[href$='.pdf'] { | |
display:inline-block; | |
padding-right:0; | |
padding-left:20px; | |
line-height:18px; | |
background:transparent url(/img/adobe.gif) center left no-repeat; | |
} |
NewerOlder