var req = new XMLHttpRequest();
req.open(
"GET",
"URL",
true);
req.onreadystatechange = statusListener;
req.send(null);
function statusListener()
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() { | |
var colors = []; | |
var title = document.title.replace(/Dribbble - /g, ''); | |
var li = document.getElementsByClassName('color'); | |
if (li.length > 0) { | |
for (var i = 0; i < li.length; i++) { | |
var c = li[i].getElementsByTagName('a')[0].getAttribute('title'); | |
colors.push('<li><div style="display:inline-block; width:20px; height:20px;background:' + c + '"></div> ' + c + '</li>'); | |
} |
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
window.bookmarklet = function(opts){fullFunc(opts)}; | |
// These are the styles, scripts and callbacks we include in our bookmarklet: | |
window.bookmarklet({ | |
js : ['http://dl.dropbox.com/u/3655882/jquery.tablednd_0_5.js'], | |
jqpath : 'http://jquery.com/src/jquery-latest.js', | |
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
// If we want to test Asynchronous events we should use waits or waitsFor | |
// To test a fadeOut effect, waits(num ms) could be ok, but is not too smart in my opinion | |
// more info: https://github.com/pivotal/jasmine/wiki/Asynchronous-specs | |
// What happens if we want to test if any element is correctly deleted but before of that the element is going into a fadeOut | |
// event?. Which is happening is its opacity is going to 0 but immediately of that the element is undefined. | |
// This is my way to do it: | |
it("If one element is deleted correctly", 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
$font-folder: "/fonts/" | |
// `font-face($name, $font-files, $eot, $weight, $style) | |
// --------------------------------------------------------------- | |
// Cross-browser support for @font-face. Supports IE, Gecko, Webkit, Opera. | |
// $name is required, arbitrary, and what you will use in font stacks. | |
// $font-files is required using font-files('relative/location', 'format'). for best results use this order: woff, opentype/truetype, svg | |
// $eot is required by IE, and is a relative location of the eot file. |
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
var user = { | |
validateCredentials: function (username, password) { | |
return ( | |
(!(username += '') || username === '') ? { error: "No Username Given.", field: 'name' } | |
: (!(username += '') || password === '') ? { error: "No Password Given.", field: 'pass' } | |
: (username.length < 3) ? { error: "Username is less than 3 Characters.", field: 'name' } | |
: (password.length < 4) ? { error: "Password is less than 4 Characters.", field: 'pass' } | |
: (!/^([a-z0-9-_]+)$/i.test(username)) ? { error: "Username contains invalid characters.", field: 'name' } | |
: 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
function selectText(element) { | |
var text = document.getElementById(element); | |
if ($.browser.msie) { | |
var range = document.body.createTextRange(); | |
range.moveToElementText(text); | |
range.select(); | |
} else if ($.browser.mozilla || $.browser.opera) { |
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
.ipad-only, | |
.iphone-only, | |
.retina-only, | |
.non-retina-only, | |
.retina-iphone-only, | |
.non-retina-iphone-only | |
display: none | |
// iPad Only | |
@media only screen and (device-width: 768px) |
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
// Basic example | |
@mixin linear-gradient-image($image-url, $start-color, $stop-color) | |
background: url(#{$image-url}) right 0 no-repeat, $stop-color | |
background: url(#{$image-url}) right 0 no-repeat, -moz-linear-gradient(top, $start-color, $stop-color) | |
background: url(#{$image-url}) right 0 no-repeat, -ms-linear-gradient(top, $start-color, $stop-color) | |
background: url(#{$image-url}) right 0 no-repeat, -o-linear-gradient(top, $start-color, $stop-color) | |
background: url(#{$image-url}) right 0 no-repeat, -webkit-gradient(linear, left top, left bottom, from($start-color), to($stop-color)) | |
background: url(#{$image-url}) right 0 no-repeat, -webkit-linear-gradient(top, $start-color, $stop-color) | |
background: url(#{$image-url}) right 0 no-repeat, linear-gradient(top, $start-color, $stop-color) |
Let's face it. I'm not the Queen Elizabeth in what concerns to speak English. But ey! (hey!), just help me. I know you wanted to tell me: "Idiot, it's not like that", now you have your chance. Add your comments/pr/merges/forkes/... here and contribute to the cause of why I am paying a psychologist every month (also, can you recommend me someone?)
- It should works (It should work)
- Looks fine for you (Looks fine to you)
- Dial you (Dial you in)
- Oyster egss (Easter eggs)
OlderNewer