User eyelidlessness - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T04:53:44Zhttp://stackoverflow.com/feeds/user/17964http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1930247/does-money-map-to-float-well/1930264#19302642Answer by eyelidlessness for does money map to float well?eyelidlessness2009-12-18T19:36:52Z2009-12-18T19:36:52Z<p>Only if you want to lose money.</p>
http://stackoverflow.com/questions/1886306/how-do-we-prevent-default-actions-in-javascript/1886534#18865340Answer by eyelidlessness for How do we prevent default actions in JavaScript?eyelidlessness2009-12-11T08:05:33Z2009-12-11T08:12:33Z<pre><code>(function() {
var onmousedown;
if('onmousedown' in document && typeof document.onmousedown == 'function') {
var onmousedown = document.onmousedown;
}
document.onmousedown = function(e) {
if(typeof e == 'undefined') {
e = window.event;
}
if(!e.target) {
e.target = e.srcElement || document;
}
if('nodeName' in e.target && e.target.nodeName.toLowerCase() == 'img') {
if(e.preventDefault) {
e.preventDefault();
}
// If you want to register mousedown events for
// elements containing images, you will want to
// remove the next four lines.
if(e.stopPropagation) {
e.stopPropagation();
}
e.cancelBubble = true;
e.returnValue = false;
return false;
}
if(onmousedown !== undefined) {
onmousedown(e);
}
};
})();
</code></pre>
<p>You may need to do something similar to other events you'd like to prevent, if this doesn't do what you want.</p>
<p>Also it's worth noting that if you're trying to prevent people from downloading images from a page to their computer, you will not succeed. If a browser can download an image, so can the user. Using JavaScript to block (some) attempts is easily circumvented by simply disabling JavaScript.</p>
http://stackoverflow.com/questions/1885899/why-did-one-of-my-effects-stopped-working-after-adding-another-effect/1885917#18859171Answer by eyelidlessness for Why did one of my effects stopped working after adding another effect?eyelidlessness2009-12-11T05:14:17Z2009-12-11T05:14:17Z<p>Look in your error console (Firebug, Web Inspector, etc) for errors. If one script is overwriting properties the other script is expecting, it may break something. You also might want to consider at least deploying with all of your scripts concatenated to a single file, to reduce network lag.</p>
<p>Edit: It might also be a conflict between jQuery and Prototype and/or Scriptaculous. jQuery tries to avoid conflicts with other libraries, but only so much of this can be controlled. Ensure jQuery is loaded before the other scripts and add <code>jQuery.noConflict();</code> to the end.</p>
http://stackoverflow.com/questions/1882920/problem-with-png-fix-for-2-overlapping-images/1883268#18832680Answer by eyelidlessness for Problem with PNG Fix for 2 overlapping imageseyelidlessness2009-12-10T19:11:52Z2009-12-10T19:11:52Z<p>If the images are <code>background-image</code>s with custom <code>background-position</code>s, that may be the issue. Most PNG fix solutions don't handle <code>background-position</code> and <code>background-repeat</code> at all, and many that do have difficulties with them.</p>
http://stackoverflow.com/questions/1876156/css-hacks-firefox-3-5-and-google-chrome/1876619#18766192Answer by eyelidlessness for CSS Hacks, Firefox 3.5 and Google Chromeeyelidlessness2009-12-09T20:23:20Z2009-12-09T20:23:20Z<p>It's best to avoid these kinds of hacks, as they depend on the availability of emerging standards. Quite obviously, emerging standards will increasingly be available on more platforms as time goes on. In other words, it's a mistake to assume that a given browser is [some specific browser] because it has [some specific CSS feature].</p>
<p>Eric Wendelin's answer is a good one for targeting WebKit browsers. There's also a good way to target Gecko browsers:</p>
<pre><code>@-moz-document url-prefix() {
/* Gecko-specific CSS here */
}
</code></pre>
<p>Add in WebKit targeting (thanks Eric Wendelin):</p>
<pre><code>@media screen and (-webkit-min-device-pixel-ratio:0) {
/* Webkit-specific CSS here */
}
</code></pre>
<p>You can probably also reliably use the "feature-detection" style of CSS hacks <em>within</em> constructs like that to isolate versions, as you've already correctly isolated the engine, and you can more safely assume that the feature disparity between versions of a given engine won't shift over time.</p>
<p>Obviously the best way to isolate IE and its various versions is to use conditional comments, which IE has supported for many versions.</p>
http://stackoverflow.com/questions/216970/are-game-developers-paid-well/216971#2169716Answer by eyelidlessness for Are game developers paid well ?eyelidlessness2008-10-19T21:08:18Z2009-12-04T07:50:39Z<blockquote>
<p>I think it takes a lot more to be a game developer than a web developer </p>
</blockquote>
<p>Sure, if you're writing poor quality web apps.</p>
<p>Edit: this has been oh-so-controversial, so I guess it deserves some clarification. It isn't meant to disparage anyone or denigrate the skills of any programmer, just pointing out that web development has its reputation of being the domain of less skilled developers because until recently it's been largely devoid of good apps. In other words, it's only now coming into its own as an app platform and it's no surprise that what has been produced before that isn't particularly compelling.</p>
http://stackoverflow.com/questions/1844582/how-to-make-this-context-menu-plugin-also-work-with-left-click/1844595#18445951Answer by eyelidlessness for How to make this context menu plugin also work with left click?eyelidlessness2009-12-04T03:05:04Z2009-12-04T03:05:04Z<p>You'd change <code>$(this).bind('contextmenu'</code> (about half way down) to <code>$(this).bind('click contextmenu'</code>, but obviously you'll want to add some other limitations for click cases, or you'll get a context menu for every single click.</p>
http://stackoverflow.com/questions/1841916/how-to-avoid-global-variables-in-javascript/1841941#18419417Answer by eyelidlessness for How to Avoid Global Variables in Javascripteyelidlessness2009-12-03T18:34:05Z2009-12-03T21:18:57Z<p>The easiest way is to wrap your code in a closure and manually expose only those variables you need globally to the global scope:</p>
<pre><code>(function() {
// Your code here
// Expose to global
window['varName'] = varName;
})();
</code></pre>
<p>To address Crescent Fresh's comment: in order to remove global variables from the scenario entirely, the developer would need to change a number of things assumed in the question. It would look a lot more like this:</p>
<p>Javascript:</p>
<pre><code>(function() {
var addEvent = function(element, type, method) {
if('addEventListener' in element) {
element.addEventListener(type, method, false);
} else if('attachEvent' in element) {
element.attachEvent('on' + type, method);
// If addEventListener and attachEvent are both unavailable,
// use inline events. This should never happen.
} else if('on' + type in element) {
// If a previous inline event exists, preserve it. This isn't
// tested, it may eat your baby
var oldMethod = element['on' + type],
newMethod = function(e) {
oldMethod(e);
newMethod(e);
};
} else {
element['on' + type] = method;
}
},
uploadCount = 0,
startUpload = function() {
var fil = document.getElementById("FileUpload" + uploadCount);
if(!fil || fil.value.length == 0) {
alert("Finished!");
document.forms[0].reset();
return;
}
disableAllFileInputs();
fil.disabled = false;
alert("Uploading file " + uploadCount);
document.forms[0].submit();
};
addEvent(window, 'load', function() {
var frm = document.forms[0];
frm.target = "postMe";
addEvent(frm, 'submit', function() {
startUpload();
return false;
});
});
var iframe = document.getElementById('postHere');
addEvent(iframe, 'load', function() {
uploadCount++;
if(uploadCount > 1) {
startUpload();
}
});
})();
</code></pre>
<p>HTML:</p>
<pre><code><iframe src="test.htm" name="postHere" id="postHere"></iframe>
</code></pre>
<p>You don't <strong>need</strong> an inline event handler on the <code><iframe></code>, it will still fire on each load with this code.</p>
<p><strong>Regarding the load event</strong></p>
<p>Here is a test case demonstrating that you don't need an inline <code>onload</code> event. This depends on referencing a file (/emptypage.php) on the same server, otherwise you should be able to just paste this into a page and run it.</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>untitled</title>
</head>
<body>
<script type="text/javascript" charset="utf-8">
(function() {
var addEvent = function(element, type, method) {
if('addEventListener' in element) {
element.addEventListener(type, method, false);
} else if('attachEvent' in element) {
element.attachEvent('on' + type, method);
// If addEventListener and attachEvent are both unavailable,
// use inline events. This should never happen.
} else if('on' + type in element) {
// If a previous inline event exists, preserve it. This isn't
// tested, it may eat your baby
var oldMethod = element['on' + type],
newMethod = function(e) {
oldMethod(e);
newMethod(e);
};
} else {
element['on' + type] = method;
}
};
// Work around IE 6/7 bug where form submission targets
// a new window instead of the iframe. SO suggestion here:
// http://bit.ly/6CzWIF
var iframe;
try {
iframe = document.createElement('<iframe name="postHere">');
} catch (e) {
iframe = document.createElement('iframe');
iframe.name = 'postHere';
}
iframe.name = 'postHere';
iframe.id = 'postHere';
iframe.src = '/emptypage.php';
addEvent(iframe, 'load', function() {
alert('iframe load');
});
document.body.appendChild(iframe);
var form = document.createElement('form');
form.target = 'postHere';
form.action = '/emptypage.php';
var submit = document.createElement('input');
submit.type = 'submit';
submit.value = 'Submit';
form.appendChild(submit);
document.body.appendChild(form);
})();
</script>
</body>
</html>
</code></pre>
<p>The alert fires every time I click the submit button in Safari, Firefox, IE 6, 7 and 8.</p>
http://stackoverflow.com/questions/1841538/jquery-selectors-behave-oddly/1841703#18417033Answer by eyelidlessness for Jquery selectors behave oddlyeyelidlessness2009-12-03T17:55:28Z2009-12-03T18:09:23Z<p>New answer (based on question edit): If you have elements being added after you register event listeners, these listeners will not apply to those elements (event listeners are explicitly added to individual DOM nodes, not to "selectors" which the DOM really knows nothing about). The easiest solution to this is to use jQuery's <code>live</code> method:</p>
<pre><code>$('div > input').live('click', function() { ... });
</code></pre>
<p><code>live</code> uses a basic implementation of event delegation: the <code>click</code> event, received by the <code>document</code> DOM node, has bubbled up from <code>div > input</code> and jQuery will trigger your event listener for that element when the event bubbles up.</p>
<p>Old answer: Are you sure the selectors are the failure point? Try <code>$('div > input').css({ border: '1px solid red' });</code> and see if the elements in question are affected. If they are, chances are some earlier-registered click handlers are using <code>event.preventDefault()</code> or some other means of preventing your listeners from being triggered.</p>
http://stackoverflow.com/questions/1816255/when-is-it-wise-to-use-regular-expressions-with-html/1817247#18172471Answer by eyelidlessness for When is it wise to use regular expressions with HTML?eyelidlessness2009-11-30T00:12:18Z2009-11-30T00:12:18Z<p>One thing worth keeping in mind is that there are two main sources of objection to processing HTML with regular expressions. One source has to do with the probability of junk HTML that is unpredictably malformed. This is itself a legitimate reason to be skeptical when approaching HTML processing with regex, and tosses out a lot of use cases from the start. The problem is that this source is often used to "throw out the baby with the bathwater", and is also often conflated with the second main source of objection (and usually both left unsaid) even though they're completely unrelated.</p>
<p>The other main source of objection has to do with HTML language complexity exceeding some idealized, theoretical conception of "regular expression" that is too general to apply to many use cases—but is usually applied across the board. The objection goes something like this:</p>
<ol>
<li>Truism: Regular expressions process regular grammars.</li>
<li>Truism: HTML is not a regular grammar.</li>
<li>HTML cannot be processed with regular expressions.</li>
</ol>
<p>I think a lot of people really just take these truisms at face value without considering what's meant by them. Bill Karwin, in another answer here, mentioned some cases where HTML is not a regular grammar, but this argument falls apart when the context is a "regex" engine that has non-regular features (like back references, or even recursion). These features solve many of the "not a regular grammar" objections, but may still fail on malformed documents.</p>
<p>This distinction is rarely drawn and it's rarely pointed out that most modern "regular" expression libraries have capabilities far beyond regular language processing. I think these are important things to consider whenever evaluating "regular" expressions for the appropriate tool to process some HTML.</p>
http://stackoverflow.com/questions/1794047/can-javascript-detect-when-the-user-stops-loading-the-document/1794845#17948451Answer by eyelidlessness for Can JavaScript detect when the user stops loading the document?eyelidlessness2009-11-25T05:28:39Z2009-11-25T05:36:56Z<p>As I suggested in the comments... add the script in the <code>onload</code> event.</p>
<p>Edit: I guess I can explain my reasoning for the suggestion, hopefully it'll help others trying to save the same problem.</p>
<p>A browser will continue to "load" (and thus play the throbber) until it has fired the <code>onload</code> event for every "window" (each DOM tree with a global <code>window</code> parent) in a given window or tab. Many outside resources are able to download in parallel, but by default—and in fact, there is no escaping this default in any browser except IE (using the <code>defer</code> attribute on the <code><script></code> tag)—<code><script></code> resources will "block" further processing of the document. If the <code><script></code> resource request never completes, the page's <code>onload</code> event never fires (and there are other side effects as well, if there is content after the <code><script></code> in the DOM: the DOM may never be fully loaded, and resources after that <code><script></code> may never load at all), and thus never finishes "loading".</p>
<p>Carrying on from that, you may also be able to improve performance by adding an initial <code><script></code> at when the DOM is loaded, with a <code>defer</code> attribute for IE, and cutting the connection for other browsers when you expect the <code>onload</code> event would fire (this is hard to pinpoint exactly and may require experimentation).</p>
http://stackoverflow.com/questions/1778294/how-to-weed-out-bad-emails-in-php/1778302#17783020Answer by eyelidlessness for How to weed out bad emails (in php)?eyelidlessness2009-11-22T09:48:38Z2009-11-22T09:48:38Z<p>You really should just require confirmation.</p>
<p>Short of that, you can deactivate users whose emails have bounced a certain number of times, and require a new email at next login.</p>
http://stackoverflow.com/questions/1724255/why-does-2-2-in-javascript/1724572#17245722Answer by eyelidlessness for Why does 2 == [2] in JavaScript?eyelidlessness2009-11-12T19:02:33Z2009-11-12T19:13:47Z<p>To add a little detail to the other answers... when comparing an <code>Array</code> to a <code>Number</code>, Javascript will convert the <code>Array</code> with <code>parseFloat(array)</code>. You can try it yourself in the console (eg Firebug or Web Inspector) to see what different <code>Array</code> values get converted to.</p>
<pre><code>parseFloat([2]); // 2
parseFloat([2, 3]); // 2
parseFloat(['', 2]); // NaN
</code></pre>
<p>For <code>Array</code>s, <code>parseFloat</code> performs the operation on the <code>Array</code>'s first member, and discards the rest.</p>
<p>Edit: Per Christoph's details, it may be that it is using the longer form internally, but the results are consistently identical to <code>parseFloat</code>, so you can always use <code>parseFloat(array)</code> as shorthand to know for sure how it will be converted.</p>
http://stackoverflow.com/questions/1646698/what-is-the-new-keyword-in-javascript/1646727#16467270Answer by eyelidlessness for What is the 'new' keyword in JavaScript?eyelidlessness2009-10-29T21:37:40Z2009-10-29T21:37:40Z<p>The <code>new</code> keyword creates instances of objects using functions as a constructor. For instance:</p>
<pre><code>var foo = function() {
return {};
};
var bar = new foo(); // returns an instance of an empty object.
</code></pre>
http://stackoverflow.com/questions/1582592/php-how-to-parse-this-xml/1582810#15828100Answer by eyelidlessness for PHP - How to parse this xml?eyelidlessness2009-10-17T17:56:37Z2009-10-17T17:56:37Z<p>NawaMan's answer is probably what you need, but if you want to simplify your PHP DOM code generally, you can also consider the jQuery-inspired <a href="http://code.google.com/p/phpquery/" rel="nofollow">phpQuery</a>.</p>
http://stackoverflow.com/questions/1574273/conditional-operator-shortcut-in-php/1574279#15742794Answer by eyelidlessness for conditional operator shortcut in PHP?eyelidlessness2009-10-15T18:43:40Z2009-10-15T18:46:25Z<p>You should be setting a variable with the results of your database call before using the conditional operator for this purpose. Your example makes the database call twice.</p>
<p>For example:</p>
<pre><code>$output = $this->db->get_where('my_db',array('id'=>$id))->row()->some_value);
$output = $output ? $output : "Some Value Not Set";
echo $output;
</code></pre>
<p>And with that established, this is a good case where it's really wiser to not use the conditional operator, which really isn't meant to be used as a general purpose if-then shortcut.</p>
http://stackoverflow.com/questions/1568658/html-tables-how-to-make-ie-not-break-lines-at-hyphens/1568690#15686904Answer by eyelidlessness for HTML Tables - How to make IE not break lines at hyphenseyelidlessness2009-10-14T20:11:35Z2009-10-14T23:19:30Z<p>Use this CSS:</p>
<pre><code>.nowrap {
white-space: nowrap;
}
</code></pre>
<p>Wrap your dates like: <code><span class="nowrap">2009-01-01</span></code>.</p>
<p>Edit: the advantage of this solution over others is that it gives you more precise control over what should or should not wrap. Your cells may still wrap for spaces and other hyphens, outside the span.</p>
http://stackoverflow.com/questions/1568235/how-can-i-apply-jquery-click-to-first-level-items-only/1568275#15682753Answer by eyelidlessness for How can I apply jQuery.click to first level items only?eyelidlessness2009-10-14T18:53:56Z2009-10-14T19:00:22Z<pre><code>jQuery('#adminMenu > li').click(function(e) {
var clicked = jQuery(e.target);
// Ensure we're checking which list item is clicked,
// other children should be allowed
if(!clicked.is('li') && clicked.parents('li').length > 0) {
// :first ensures we do not select higher level list items
clicked = clicked.parents('li:first');
}
// If clicked list item is a child of another list item, we'll exit here
if(!clicked.is('#adminMenu > li')) {
return;
}
alert('test');
});
</code></pre>
<p>Updated to exit if clicked list item is not an immediate descendant of <code>#adminMenu</code>.</p>
http://stackoverflow.com/questions/172821/detecting-when-a-divs-height-changes-using-jquery/173349#1733490Answer by eyelidlessness for Detecting when a div's height changes using jQueryeyelidlessness2008-10-06T06:35:12Z2009-10-10T21:41:19Z<p>You can use the DOMSubtreeModified event </p>
<pre><code>$(something).bind('DOMSubtreeModified' ...
</code></pre>
<p>But this will fire even if the dimensions don't change, and reassigning the position whenever it fires can take a performance hit. In my experience using this method, checking whether the dimensions have changed is less expensive and so you might consider combining the two.</p>
<p>Or if you are directly altering the div (rather than the div being altered by user input in unpredictable ways, like if it is contentEditable), you can simply fire a custom event whenever you do so.</p>
<p>Downside: IE and Opera don't implement this event.</p>
http://stackoverflow.com/questions/1544317/jquery-change-type-of-input-field/1544338#15443385Answer by eyelidlessness for JQuery change type of input fieldeyelidlessness2009-10-09T14:57:22Z2009-10-09T15:02:41Z<p>It's very likely this action is prevented as part of the browser's security model.</p>
<p>Edit: indeed, testing right now in Safari, I get the error <code>type property cannot be changed</code>.</p>
<p>Edit 2: that seems to be an error straight out of jQuery. Using the following straight DOM code works just fine:</p>
<pre><code>var pass = document.createElement('input');
pass.type = 'password';
document.body.appendChild(pass);
pass.type = 'text';
pass.value = 'Password';
</code></pre>
<p>Edit 3: Straight from the jQuery source, this seems to be related to IE (and could either be a bug or part of their security model, but jQuery isn't specific):</p>
<pre><code>// We can't allow the type property to be changed (since it causes problems in IE)
if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
throw "type property can't be changed";
</code></pre>
http://stackoverflow.com/questions/1544215/tips-for-writing-a-jquery-selector/1544278#15442781Answer by eyelidlessness for Tips for writing a jQuery selectoreyelidlessness2009-10-09T14:49:03Z2009-10-09T14:49:03Z<p>While <code>class</code> and <code>id</code> are the easiest to plan around, I've found I focus more and more on attribute selectors and jQuery's pseudo-pseudoclasses. Two in particular that have been indispensable lately are <code>:has()</code> and <code>:not()</code>. Attribute selectors are also really handy if you know how to use them, though they're fairly limited in what they can do. One improvement that I'd love to see in the selector engine is a negation of <code>:has()</code>, and a negation of <code>[attribute]</code>.</p>
http://stackoverflow.com/questions/1527276/mouseover-element-flickers/1527299#15272991Answer by eyelidlessness for mouseover element flickerseyelidlessness2009-10-06T18:32:59Z2009-10-06T18:32:59Z<p>In IE? IE is notorious for not caching images that are loaded dynamically (either with CSS <code>:hover</code> or due to Javascript events). You can use CSS sprites (basically, using one image file to display both images, and using positioning to show one or the other; <a href="http://www.alistapart.com/articles/sprites" rel="nofollow">tutorial</a>, linked by <a href="http://stackoverflow.com/questions/1527276/mouseover-element-flickers/1382679#comment-1382679">Mike Robinson</a>), or you can use image preloading:</p>
<pre><code>var preloadImg = document.createElement('img');
preloadImg.src = 'path/to/image';
</code></pre>
<p>Edit: and other browsers will do the same on first load. IE just may continue to do it on every switch.</p>
http://stackoverflow.com/questions/1516987/wrap-content-in-div/1517082#15170820Answer by eyelidlessness for Wrap content in DIVeyelidlessness2009-10-04T18:44:29Z2009-10-04T18:44:29Z<pre><code>var str = 'Price:<strong>£12.30 (Ex VAT)</strong>';
var div = $('<div />').html(str);
</code></pre>
http://stackoverflow.com/questions/1515652/get-contents-of-link-tag-with-javascript/1515705#15157051Answer by eyelidlessness for Get contents of link tag with javascript?eyelidlessness2009-10-04T05:46:55Z2009-10-04T05:46:55Z<p>If you want to get the content of already-loaded stylesheets without an additional HTTP request, the best place to start is the <code>document.styleSheets</code> object. Here's documentation (from MDC, but IE's implementation is largely similar): <a href="https://developer.mozilla.org/En/DOM/document.styleSheets" rel="nofollow">https://developer.mozilla.org/En/DOM/document.styleSheets</a></p>
http://stackoverflow.com/questions/1507931/generate-lighter-darker-color-in-css-using-javascript/1507987#15079873Answer by eyelidlessness for Generate lighter/darker color in css using javascripteyelidlessness2009-10-02T06:23:16Z2009-10-02T17:38:51Z<pre><code>var pad = function(num, totalChars) {
var pad = '0';
num = num + '';
while (num.length < totalChars) {
num = pad + num;
}
return num;
};
// Ratio is between 0 and 1
var changeColor = function(color, ratio, darker) {
// Trim trailing/leading whitespace
color = color.replace(/^\s*|\s*$/, '');
// Expand three-digit hex
color = color.replace(
/^#?([a-f0-9])([a-f0-9])([a-f0-9])$/i,
'#$1$1$2$2$3$3'
);
// Calculate ratio
var difference = Math.round(ratio * 256) * (darker ? -1 : 1),
// Determine if input is RGB(A)
rgb = color.match(new RegExp('^rgba?\\(\\s*' +
'(\\d|[1-9]\\d|1\\d{2}|2[0-4][0-9]|25[0-5])' +
'\\s*,\\s*' +
'(\\d|[1-9]\\d|1\\d{2}|2[0-4][0-9]|25[0-5])' +
'\\s*,\\s*' +
'(\\d|[1-9]\\d|1\\d{2}|2[0-4][0-9]|25[0-5])' +
'(?:\\s*,\\s*' +
'(0|1|0?\\.\\d+))?' +
'\\s*\\)$'
, 'i')),
alpha = !!rgb && rgb[4] != null ? rgb[4] : null,
// Convert hex to decimal
decimal = !!rgb? [rgb[1], rgb[2], rgb[3]] : color.replace(
/^#?([a-f0-9][a-f0-9])([a-f0-9][a-f0-9])([a-f0-9][a-f0-9])/i,
function() {
return parseInt(arguments[1], 16) + ',' +
parseInt(arguments[2], 16) + ',' +
parseInt(arguments[3], 16);
}
).split(/,/),
returnValue;
// Return RGB(A)
return !!rgb ?
'rgb' + (alpha !== null ? 'a' : '') + '(' +
Math[darker ? 'max' : 'min'](
parseInt(decimal[0], 10) + difference, darker ? 0 : 255
) + ', ' +
Math[darker ? 'max' : 'min'](
parseInt(decimal[1], 10) + difference, darker ? 0 : 255
) + ', ' +
Math[darker ? 'max' : 'min'](
parseInt(decimal[2], 10) + difference, darker ? 0 : 255
) +
(alpha !== null ? ', ' + alpha : '') +
')' :
// Return hex
[
'#',
pad(Math[darker ? 'max' : 'min'](
parseInt(decimal[0], 10) + difference, darker ? 0 : 255
).toString(16), 2),
pad(Math[darker ? 'max' : 'min'](
parseInt(decimal[1], 10) + difference, darker ? 0 : 255
).toString(16), 2),
pad(Math[darker ? 'max' : 'min'](
parseInt(decimal[2], 10) + difference, darker ? 0 : 255
).toString(16), 2)
].join('');
};
var lighterColor = function(color, ratio) {
return changeColor(color, ratio, false);
};
var darkerColor = function(color, ratio) {
return changeColor(color, ratio, true);
};
// Use
var darker = darkerColor('rgba(80, 75, 52, .5)', .2);
var lighter = lighterColor('rgba(80, 75, 52, .5)', .2);
</code></pre>
<p>Now handles RGB(A) input, as well as hex (3 digit or 6).</p>
http://stackoverflow.com/questions/1490766/how-to-remove-only-positiontop-and-left-of-style-attr-jusing-jquery/1490774#14907741Answer by eyelidlessness for How to remove only position(top and left) of Style attr jusing jqueryeyelidlessness2009-09-29T05:53:56Z2009-09-29T06:45:34Z<p>I'm not sure if you're asking for removing a <code>position</code> HTML attribute, a <code>position</code> style, or <code>top</code> and <code>left</code> styles. In any case, you can remove any attribute with <code>$.removeAttr()</code>, and you can remove (dynamically assigned) styles with <code>$.css({ styleName: '' })</code>;</p>
<p>Edit: it seems you want <code>$.css({ position: '' })</code>, or more likely <code>$.css({ position: 'static' })</code>, as that is the default value.</p>
http://stackoverflow.com/questions/1490648/easy-jquery-question-populate-a-select-box-with-an-object-rather-than-html-text/1490673#14906732Answer by eyelidlessness for Easy JQuery question: populate a select box with an object rather than html text?eyelidlessness2009-09-29T05:16:48Z2009-09-29T05:16:48Z<pre><code>var opt = document.createElement('option');
opt.appendChild(document.createTextNode('test'));
$('select').append(opt);
</code></pre>
<p>Works for me (I tested in IE 6, Firefox 3 and Safari 4).</p>
http://stackoverflow.com/questions/1488357/alternative-regular-expression-to-do-this-asmx-jsaspxhtm/1488718#14887182Answer by eyelidlessness for Alternative regular expression to do this "\.(asmx(?!/js)|aspx|htm)"eyelidlessness2009-09-28T18:50:08Z2009-09-28T18:55:13Z<p>Don't worry about performance of such a simple lookahead. Your regex is fine.</p>
<p>Edit: But it may catch false positives (eg Portal.asmx/jssomething), you might try something like:</p>
<pre><code>\.(asmx(?!/js[/\z])|aspx$|html?$)
</code></pre>
http://stackoverflow.com/questions/1480133/how-can-i-get-an-objects-absolute-position-on-the-page-in-javascript/1480137#14801373Answer by eyelidlessness for How can I get an object's absolute position on the page in Javascript?eyelidlessness2009-09-26T01:02:30Z2009-09-26T01:02:30Z<pre><code>var cumulativeOffset = function(element) {
var top = 0, left = 0;
do {
top += element.offsetTop || 0;
left += element.offsetLeft || 0;
element = element.offsetParent;
} while(element);
return {
top: top,
left: left
};
};
</code></pre>
<p>(Method shamelessly stolen from PrototypeJS; code style, variable names and return value changed to protect the innocent)</p>
http://stackoverflow.com/questions/1480114/php-invalid-argument-supplied-for-foreach-on-shared-server/1480121#14801210Answer by eyelidlessness for PHP "Invalid argument supplied for foreach()" on shared servereyelidlessness2009-09-26T00:53:56Z2009-09-26T00:53:56Z<p><code>$data</code> is invalid JSON? (Either malformed or empty)</p>
http://stackoverflow.com/questions/1937803/block-alignment-woes-with-ie7-how-to-solve/1937808#1937808Comment by eyelidlessness on Block alignment woes with IE7, how to solve?eyelidlessness2009-12-21T02:01:50Z2009-12-21T02:01:50ZUsing <code>inline-block</code> cross-browser is easier than that: <code>your selector { display: -moz-inline-box; /* Firefox < 3, will be quirky in some edge cases... */ display: inline-block; *display: inline; *zoom: 1; /* Star hack targets IE < 8; zoom triggers hasLayout with no other side-effects */</code>http://stackoverflow.com/questions/1650401/semantic-html5-back-to-the-90s/1757052#1757052Comment by eyelidlessness on Semantic html5. Back to the 90s ?eyelidlessness2009-12-18T18:27:29Z2009-12-18T18:27:29ZRegarding table layouts, I'm curious if you looked at the link I posted. Table layouts without table semantics can be done, today. That said, I have little problem with flexible-size grid-type layouts without table layout. I'd like to see such an example, and offer to try to reproduce without table layout, but I will be honest and say I won't have the time available to devote to it for some weeks.
Good discussion though!http://stackoverflow.com/questions/1650401/semantic-html5-back-to-the-90s/1757052#1757052Comment by eyelidlessness on Semantic html5. Back to the 90s ?eyelidlessness2009-12-18T18:23:30Z2009-12-18T18:23:30ZRegarding the predefined-but-open-ended list of semantics, I think this rather calls out more for an evolution of the HTML language (and all of its interpreters) to allow for custom tag semantics (without the namespace mess of XHTML). I don't think moving the semantics out of the tag name into an attribute has any real benefit, but I think there is truly a need for an evolving set of semantics, and some kind of a way to determine de-facto standards as they evolve.http://stackoverflow.com/questions/1928965/code-igniter-logging-too-muchComment by eyelidlessness on Code Igniter logging too mucheyelidlessness2009-12-18T18:05:42Z2009-12-18T18:05:42ZI edited your formatting to use code blocks rather than blockquotes for the code. Feel free to rollback if you want, but I think it makes more sense to use the code blocks and the correct text.http://stackoverflow.com/questions/1650401/semantic-html5-back-to-the-90s/1757052#1757052Comment by eyelidlessness on Semantic html5. Back to the 90s ?eyelidlessness2009-12-17T21:35:28Z2009-12-17T21:35:28ZRegarding making choices between semantics and presentation, there is no such choice. All of the semantics, coupled with the CSS standard, are capable of all of the functionality of the semantically erroneous easy-way-out alternatives. Even table-based layouts (whose appeal is lost on me, but to each their own) can be accomplished without table semantics (and to an almost perfect extent, can be worked around to be backwards compatible all the way back to at least IE 6): <a href="http://bit.ly/MIrzS" rel="nofollow">bit.ly/MIrzS</a>. There is no excuse not to use semantic HTML except laziness.http://stackoverflow.com/questions/1650401/semantic-html5-back-to-the-90s/1757052#1757052Comment by eyelidlessness on Semantic html5. Back to the 90s ?eyelidlessness2009-12-17T21:30:57Z2009-12-17T21:30:57ZAnyway, where your idea misses the mark completely is that it dismisses the value of <i>predictability</i> of HTML semantics. Unless your idea is coupled with a defined set of acceptable <code>semantic</code> attribute values, the semantics may as well be completely meaningless except to the markup author. And if it <i>is</i> coupled with such a set of values, it's pretty much an exact duplication of the HTML5 semantics efforts.
In my opinion, the real problem with the HTML5 semantics efforts is that the defined set of semantics is still way too small to accommodate actual real-world use.http://stackoverflow.com/questions/1650401/semantic-html5-back-to-the-90s/1757052#1757052Comment by eyelidlessness on Semantic html5. Back to the 90s ?eyelidlessness2009-12-17T21:28:20Z2009-12-17T21:28:20ZIf you're going to go that route, and represent <i>applications</i> with HTML syntax but only a subset of HTML elements, I'd say that it's high time to introduce a whole slew of new widgets, particularly form type widgets. I think this is where the flaw in the idea becomes most evident. HTML is woefully lacking in functional elements, leaving them to be implemented primarily in a client-side script. All of that is fine because HTML today serves as a hybrid between documents and applications. Were this idea pursued, we'd end up with two wildly divergent HTML languages, and broken sites as a result.http://stackoverflow.com/questions/1650401/semantic-html5-back-to-the-90s/1757052#1757052Comment by eyelidlessness on Semantic html5. Back to the 90s ?eyelidlessness2009-12-17T21:25:21Z2009-12-17T21:25:21ZBy adding a <code>semantic</code> attribute you're essentially validating the usefulness of the semantics effort, but putting it in a different place in the code. This is fine, but the notion that tags should correspond to <i>functionality</i> does dismiss the actual purpose of the HTML language, which is to describe <i>documents</i>, which are inherently <i>semantic</i>, not <i>functional</i>. I think this really gives rise to the need for a separate environment for <i>documents</i> from <i>applications</i> (the latter of which could contain instances of the former). (cont'd)http://stackoverflow.com/questions/1913441/other-app-icons-in-iphone-app/1918264#1918264Comment by eyelidlessness on Other App icons in iPhone Appeyelidlessness2009-12-16T22:33:50Z2009-12-16T22:33:50ZHere's some evidence of the claim (Microsoft encourages same, see link): <a href="http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/872008061041?r=884005171041#884005171041" rel="nofollow">episteme.arstechnica.com/eve/forums/…</a>http://stackoverflow.com/questions/1913441/other-app-icons-in-iphone-app/1918264#1918264Comment by eyelidlessness on Other App icons in iPhone Appeyelidlessness2009-12-16T22:31:31Z2009-12-16T22:31:31ZThis is odd, because Apple <b>encourages</b> (in their UI guidelines) the use of Apple's application (and other built-in) icons where appropriate within third-party applications on desktop Mac OS X.http://stackoverflow.com/questions/1911918/should-i-do-money-calculations-in-javascript-or-as-an-ajax-call/1911962#1911962Comment by eyelidlessness on Should I do money calculations in Javascript or as an AJAX call?eyelidlessness2009-12-16T03:14:35Z2009-12-16T03:14:35ZRam, ECMAScript uses fast, but imprecise, float calculations. So for instance, <code>.1 + .2 = 0.30000000000000004</code>. Even ECMAScript 5 will have these problems, because the proposed precision system was deemed too problematic (very slow and might break existing applications) for the standard. It'll be another couple years before a precise system is even standardized, let alone available.http://stackoverflow.com/questions/1885899/why-did-one-of-my-effects-stopped-working-after-adding-another-effect/1885917#1885917Comment by eyelidlessness on Why did one of my effects stopped working after adding another effect?eyelidlessness2009-12-11T22:40:01Z2009-12-11T22:40:01ZThis is one of the first results I got when I googled that error: <a href="http://stackoverflow.com/questions/415550/prototype-and-jquery-peaceful-co-existence" rel="nofollow" title="prototype and jquery peaceful co existence">stackoverflow.com/questions/415550/…</a>http://stackoverflow.com/questions/1886306/how-do-we-prevent-default-actions-in-javascript/1886313#1886313Comment by eyelidlessness on How do we prevent default actions in JavaScript?eyelidlessness2009-12-11T08:13:02Z2009-12-11T08:13:02ZAle Anderson, what "default action"? There are many actions available.http://stackoverflow.com/questions/1886306/how-do-we-prevent-default-actions-in-javascriptComment by eyelidlessness on How do we prevent default actions in JavaScript?eyelidlessness2009-12-11T08:10:56Z2009-12-11T08:10:56ZAle Anderson, if people ask you to clarify your question you might consider that what seems clear to you isn't necessarily clear to others. Your question is extremely unclear.http://stackoverflow.com/questions/1885899/why-did-one-of-my-effects-stopped-working-after-adding-another-effect/1885917#1885917Comment by eyelidlessness on Why did one of my effects stopped working after adding another effect?eyelidlessness2009-12-11T08:06:27Z2009-12-11T08:06:27ZCan you please look in the error console (Firebug or Web Inspector) and share any errors that appear when you load the page?