User Andrew Hedges - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T12:37:15Zhttp://stackoverflow.com/feeds/user/11577http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1691105/how-can-i-fix-the-jumpiness-problem-on-a-moving-li-stream-jqtouch-mobile-web-ap/1691185#16911850Answer by Andrew Hedges for how can I fix the jumpiness problem on a moving <LI> stream jQTouch mobile web app (iPhone JavaScript)Andrew Hedges2009-11-06T23:18:13Z2009-11-06T23:18:13Z<p>I worked with Brian on the application in question. It appears that the phone is completely redrawing the viewport with each new item after the first 15 or so.</p>
<p>We're hoping the Stack community will know of a clever workaround!</p>
http://stackoverflow.com/questions/263741/using-applescript-to-grab-the-url-from-the-frontmost-window-in-web-browsers-the5Using AppleScript to grab the URL from the frontmost window in web browsers: The definitive listAndrew Hedges2008-11-04T22:36:17Z2009-10-21T04:38:47Z
<p>I built a <strong><a href="http://tr.im/trimit" rel="nofollow">widget</a></strong> that grabs the URL from the frontmost window in Safari, then allows you to shorten it using the <a href="http://tr.im/" rel="nofollow">tr.im</a> API. Works sweet as.</p>
<p>I want to make this more flexible, so am investigating how to grab an URL from other browsers. Here's the AppleScript that works in Safari:</p>
<pre><code>tell application "Safari"
return URL of front document as string
end tell
</code></pre>
<p>After <a href="http://forums.macosxhints.com/showthread.php?t=32237" rel="nofollow">some digging</a>, I determined that the following <em>might</em> work for Firefox (though one person has told me it doesn't work for him, possibly a conflict with some extension?):</p>
<pre><code>tell application "Firefox"
set myFirefox to properties of front window as list
return item 3 of myFirefox
end tell
</code></pre>
<p><em>Note: The above is an example of a less-than-best practice, relying on the position of list items. See below for a better solution for Firefox.</em></p>
<p>What I'd like to do is build a list here of the definitive equivalents for every modern browser on the Mac: Opera, Camino, Flock, etc.</p>
<p><strong>Update:</strong> In my research on the subject, I came across a helpful thread on <a href="http://www.macosxhints.com/article.php?story=20060325015454467" rel="nofollow">MacOSXHints.com</a>. Most of my answers below are based on that discussion.</p>
<p><strong>Update 2:</strong> I've incorporated the AppleScript on this page into the <a href="http://tr.im/trimit" rel="nofollow">widget</a>. It seems to be working swell.</p>
http://stackoverflow.com/questions/475674/what-javascript-events-are-available-to-webkit-on-android3What JavaScript events are available to WebKit on Android?Andrew Hedges2009-01-24T07:13:16Z2009-09-14T20:16:33Z
<p>I'm building a mobile web app targeting Android users. I need to know what JavaScript events are available to me. I have been able to make the following work, but not terribly reliably:</p>
<ul>
<li>click</li>
<li>mouseover</li>
<li>mousedown</li>
<li>mouseup</li>
<li>change</li>
</ul>
<p>I have not been able to get the following to work:</p>
<ul>
<li>keypress</li>
<li>keydown</li>
<li>keyup</li>
</ul>
<p>Does anyone know the full list of what is supported and in what contexts (e.g., is onchange only available to form inputs?)? I can't find a reference for this on The Googles.</p>
<p>Thanks!</p>
<p><strong>Update:</strong> I asked <a href="http://groups.google.com/group/android-developers/browse_thread/thread/b9e24e2b05f39c5a/81292b608623f643" rel="nofollow">the same question on the Android developers list</a>. I will be doing some more testing and will post my results both here and there.</p>
http://stackoverflow.com/questions/608214/iphone-web-page-transitions/1275303#12753030Answer by Andrew Hedges for iphone web page transitionsAndrew Hedges2009-08-13T23:49:31Z2009-08-13T23:49:31Z<p>I've been deep into an iPhone web app project lately. We evaluated iUI, but decided against it for various reasons. Consequently, I've developed most of the same functionality from scratch. While I can't share the code from the actual product (as I'm under NDA), I have been documenting many of the techniques I've used to do certain things. Check out the links below:</p>
<ul>
<li><a href="http://segdeha.com/e/css-transitions/" rel="nofollow">http://segdeha.com/e/css-transitions/</a></li>
<li><a href="http://segdeha.com/blog/2009/07/19/stupid-webkit-tricks" rel="nofollow">http://segdeha.com/blog/2009/07/19/stupid-webkit-tricks</a></li>
</ul>
http://stackoverflow.com/questions/1186418/responding-to-address-bar-key-events-in-firefox-add-on/1186445#1186445-1Answer by Andrew Hedges for Responding to address bar key events in Firefox Add-onAndrew Hedges2009-07-27T04:32:43Z2009-07-27T04:32:43Z<p>In JavaScript, <code>window.location.href</code> will give you the value, and you could watch for it onkeyup, but AFAIK, you can't write back to the location field without loading the page at whatever value you set it to. What I mean is, if you did the following, it would reload the page:</p>
<pre><code>window.location.href = window.location.href.toLowerCase();
</code></pre>
<p>I'm not familiar with how Firefox extensions work, but maybe there is a more "native" way to do this?</p>
http://stackoverflow.com/questions/1027240/is-it-possible-to-create-new-widget-instances-from-within-a-dashboard-widget/1186399#11863990Answer by Andrew Hedges for Is it possible to create new widget instances from within a Dashboard widget?Andrew Hedges2009-07-27T04:13:44Z2009-07-27T04:13:44Z<p>I thought perhaps you could use <code>widget.system</code> to call the <code>open</code> command on the widget bundle and open a new copy, so I put together <a href="http://segdeha.com/widgets/Narcissus.wdgt.zip" rel="nofollow">a simple widget</a> to test it out. No go.</p>
<p>I wonder, though, if an Objective-C plugin would be any more capable or if this is a restriction baked into the Dashboard environment?</p>
http://stackoverflow.com/questions/155869/anyone-have-issues-going-from-coldfusions-serializejson-method-to-phps-jsondec4Anyone have issues going from ColdFusion's serializeJSON method to PHP's json_decode?Andrew Hedges2008-10-01T01:39:11Z2009-07-26T09:31:15Z
<p>The Interwebs are no help on this one. We're encoding data in ColdFusion using <code>serializeJSON</code> and trying to decode it in PHP using <code>json_decode</code>. Most of the time, this is working fine, but in some cases, <code>json_decode</code> returns <code>NULL</code>. We've looked for the obvious culprits, but <code>serializeJSON</code> seems to be formatting things as expected. What else could be the problem?</p>
<p>UPDATE: A couple of people (wisely) asked me to post the output that is causing the problem. I would, except we just discovered that the result set is all of our data (listing information for 2300+ rental properties for a total of 565,135 ASCII characters)! That could be a problem, though I didn't see anything in the PHP docs about a max size for the string. What would be the limiting factor there? RAM?</p>
<p>UPDATE II: It looks like the problem was that a couple of our users had copied and pasted Microsoft Word text with "smart" quotes. Those pesky users...</p>
http://stackoverflow.com/questions/1149417/font-face-is-deprecated-on-the-iphone-version-of-safari-what-are-my-alternative0@font-face is deprecated on the iPhone version of Safari. What are my alternatives?Andrew Hedges2009-07-19T07:32:17Z2009-07-19T08:35:23Z
<p>According to <a href="http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariCSSRef/Articles/OtherStandardCSS3Features.html" rel="nofollow">Apple's documentation</a>, @font-face is deprecated for use on the iPhone version of Safari. The iPhone only includes <a href="http://daringfireball.net/2007/07/iphone%5Ffonts" rel="nofollow">11 fonts</a>, AFAIK, and, in any case, I need a nice blackletter font for an app I'm building. I'll be generating random text, so images are not an option. What alternatives do I have? Am I stuck with a JavaScript solution like <a href="http://cufon.shoqolate.com/" rel="nofollow">Cufón</a>?</p>
http://stackoverflow.com/questions/1146174/using-javascript-to-model-3d-polyhedra1Using JavaScript to model 3D polyhedraAndrew Hedges2009-07-17T23:45:33Z2009-07-18T00:02:12Z
<p>Is there a JavaScript library that models <a href="http://wiki.tcl.tk/14283" rel="nofollow">3D polyhedra</a> using the canvas tag or SVG? Say I wanted to produce renderings of the <a href="http://en.wikipedia.org/wiki/Platonic%5Fsolid" rel="nofollow">Platonic solids</a>, how would I best achieve this? FWIW, I'm only concerned with WebKit-based web browsers such as Safari and Chrome.</p>
<p>I've seen this cool demo of how to render <a href="http://www.uselesspickles.com/triangles/demo.html" rel="nofollow">3D triangles</a>, but how might I extend it to polyhedra with an arbitrary number of sides?</p>
http://stackoverflow.com/questions/1121850/select-percentage-of-rows-with-different-values0Select percentage of rows with different valuesAndrew Hedges2009-07-13T20:30:49Z2009-07-13T21:00:05Z
<p>On a website I run, I let users rate the individual posts (3, 2, 1). I use the following SQL (in MySQL) to get the percentage of votes of each value:</p>
<pre><code>SELECT vote, COUNT(*) * t.factor AS pct
FROM ratings
JOIN (
SELECT 100 / COUNT(*) AS factor
FROM ratings
) AS t
GROUP BY vote
LIMIT 0, 30;
</code></pre>
<p>That works fine for calculating the percentage of rows for the whole table. Now, I need the percentages just for a particular post, identified in the table by the column "id". How might I do that?</p>
http://stackoverflow.com/questions/1121850/select-percentage-of-rows-with-different-values/1121990#11219900Answer by Andrew Hedges for Select percentage of rows with different valuesAndrew Hedges2009-07-13T20:53:22Z2009-07-13T20:53:22Z<p>One way that works, but I've been advised isn't the most efficient in the world is the following:</p>
<pre><code>SELECT vote, COUNT(*) * t.factor AS pct
FROM ratings
JOIN (
SELECT 100 / COUNT(*) AS factor
FROM ratings
WHERE id = 36
) AS t
WHERE id = 36
GROUP BY vote
LIMIT 0, 30;
</code></pre>
<p>I had tried adding a where clause to the inner and the outer selects, but not to both! Makes sense, of course.</p>
http://stackoverflow.com/questions/1070902/what-roles-are-available-for-developers-with-open-source-projects/1078225#10782251Answer by Andrew Hedges for What roles are available for developers with open-source projects?Andrew Hedges2009-07-03T07:39:01Z2009-07-03T07:39:01Z<p>The only advice I'd offer is to inquire about helping on a project that you use a lot and are a passionate advocate of already. E.g., if you find yourself raving about jQuery to anyone who will listen, ask them if there's anything you can do to help. On a big, successful project like that one, you will have to demonstrate both your skills and commitment to earn commit rights, but then the accomplishment will be all the more meaningful.</p>
http://stackoverflow.com/questions/1075553/what-do-you-do-to-prepare-for-a-new-programming-gig/1078211#10782110Answer by Andrew Hedges for What do you do to prepare for a new programming gig?Andrew Hedges2009-07-03T07:35:52Z2009-07-03T07:35:52Z<p>I've never been this proactive, but I was impressed when, at a company where I used to work, we hired a really good programmer with an impressive CV and weeks before he was to start (he was relocating his family from the UK back to NZ) he asked about our development environment and specifics about our technologies so he could start getting familiar with them. E.g., we used Eclipse with particular plug-ins for SVN and PHP support. He set up an environment on his home machine that closely matched ours so he'd have less overhead in getting started.</p>
<p>I've never seen anyone hit the ground running like he did. We'd been limping along with poor test coverage and heaps of failing unit and functional tests (because we were "too busy" to get our tests passing 100%) and within a couple of weeks he improved both of those metrics about about 80%.</p>
http://stackoverflow.com/questions/1067166/using-css-text-overflow-to-vary-the-number-of-lines-of-text-within-an-element-of1Using CSS text-overflow to vary the number of lines of text within an element of a set heightAndrew Hedges2009-07-01T03:38:25Z2009-07-01T03:58:46Z
<p>I'm deep into some iPhone (Safari/WebKit) web app development at the moment and want to have items of a set height with title text and body text such that 3 lines are always showing. If the title text is short, 2 lines of body text should show. If the title text is very long, it should take up a maximum of 2 lines and leave 1 line for body text. Whenever text is truncated, it should display an ellipsis as the last character.</p>
<p>I've come up with the following that does everything I need, except that it does not display the ellipsis. Is there a way to get this solution to satisfy that last requirement?</p>
<p><img src="http://segdeha.com/assets/imgs/stack-ellipsis.png" alt="Code below, as rendered by Safari" /></p>
<pre><code><!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
#container {
width: 100px;
}
p {
/* white-space: nowrap; */
font-family: Helvetica;
font-size: 12px;
line-height: 16px;
text-overflow: ellipsis;
max-height: 48px;
overflow: hidden;
border: solid 1px red;
}
strong {
/* white-space: nowrap; */
font-size: 16px;
display: block;
text-overflow: ellipsis;
max-height: 32px;
overflow: hidden;
}
</style>
</head>
<body>
<div id="container">
<p>
<strong>Short title</strong>
This is the text description of the item.
It can flow onto more than 2 lines, too,
if there is room for it, but otherwise
should only show 1 line.
</p>
<p>
<strong>Long title that will span more
than 2 lines when we're done.</strong>
This is the text description of the item.
It can flow onto more than 2 lines, too,
if there is room for it, but otherwise
should only show 1 line.
</p>
</div>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random5How random is JavaScript's Math.random?Andrew Hedges2009-06-30T10:22:07Z2009-06-30T14:09:57Z
<p>For 6 years I've had a <a href="http://andrew.hedges.name/experiments/random/" rel="nofollow">random number generator</a> page on my website. For a long time, it was the first or second result on Google for "random number generator" and has been used to decide dozens, if not hundreds of contests and drawings on discussion forums and blogs (I know because I see the referrers in my web logs and usually go take a look).</p>
<p>Today, someone emailed me to tell me <strong>it may not be as random as I thought.</strong> She tried generating very large random numbers (e.g., between 1 and 10000000000000000000) and found that they were almost always the same number of digits. Indeed, I wrapped the function in a loop so I could generate thousands of numbers and sure enough, for very large numbers, <strong>the variation was only about 2 orders of magnitude.</strong></p>
<p>Why?</p>
<p>Here is the looping version, so you can try it out for yourself:</p>
<p><a href="http://andrew.hedges.name/experiments/random/randomness.html" rel="nofollow">http://andrew.hedges.name/experiments/random/randomness.html</a></p>
<p>It includes both a straightforward implementation taken from the <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Global%5FObjects/Math/random" rel="nofollow">Mozilla Developer Center</a> and some code from 1997 that I swiped off a web page that no longer exists (Paul Houle's "Central Randomizer 1.3"). View source to see how each method works.</p>
<p>I've read <a href="http://stackoverflow.com/questions/424292">here</a> and <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/JAVASCRIPT/java-script.html" rel="nofollow">elsewhere</a> about <strong>Mersenne Twister.</strong> What I'm interested in is why there wouldn't be greater variation in the results from JavaScript's built-in <strong>Math.random</strong> function. Thanks!</p>
http://stackoverflow.com/questions/933645/multi-column-css-lists4Multi-column CSS listsAndrew Hedges2009-06-01T05:19:54Z2009-06-02T09:15:43Z
<p>Is there a way to do <strong>re-flowable,</strong> multi-column lists, where the list can have <strong>list items of varying heights,</strong> using only valid CSS? By re-flowable, I mean that as the user drags the window wider or narrower, the number of columns should automatically adjust when the list items are of fixed width.</p>
<p>I've seen the article on <a href="http://www.alistapart.com/articles/multicolumnlists/" rel="nofollow">A List Apart</a>, but none of their solutions fit all of those (seemingly simple) requirements. At first glance, I think the CCS3 proposal for multi-column lists does not either (because it appears you have to specify the number of columns).</p>
<p>If it helps, I am not <em>at all</em> concerned about IE6 and only kind of concerned about IE7. My target audience is early-adopter, web-savvy types.</p>
<p><strong>Update:</strong> Looking more closely at the CSS3 spec, specifying a column width <em>should</em> do it, but in reality, I'm running into weirdness with overflows and such. Anyone using this stuff IRL?</p>
http://stackoverflow.com/questions/160863/whats-a-good-minimal-server-side-javascript-framework/161055#1610550Answer by Andrew Hedges for What's a good Minimal Server-Side Javascript Framework?Andrew Hedges2008-10-02T06:07:14Z2009-05-29T03:39:12Z<p>I haven't used it yet myself, but I've been following the progress of <strong><a href="http://peter.michaux.ca/index#Synergy" rel="nofollow">Synergy</a></strong>. Might be worth a look.</p>
http://stackoverflow.com/questions/706906/jquery-filter-dropdown-list-as-you-type/706988#7069882Answer by Andrew Hedges for Jquery: Filter dropdown list as you typeAndrew Hedges2009-04-01T19:24:53Z2009-04-01T19:24:53Z<p>I wrote <a href="http://andrew.hedges.name/experiments/narrowing/" rel="nofollow">a little script to do this</a> a few years ago. It could be packaged up as a jQuery plug-in quite easily, probably. You're welcome to it.</p>
<p>I also do this in my <a href="http://andrew.hedges.name/widgets/#phpfr" rel="nofollow">PHP Function Reference</a> Dashboard widget if you want to look at the code there.</p>
http://stackoverflow.com/questions/706619/send-additional-data-with-autocomplete-options/706951#7069510Answer by Andrew Hedges for Send additional data with autocomplete optionsAndrew Hedges2009-04-01T19:07:44Z2009-04-01T19:07:44Z<p>I believe the auto-complete plug-in allows for callback functions. You could populate the hidden fields based on the users selection in that function.</p>
http://stackoverflow.com/questions/700048/jquery-constantly-ping-for-ajax-responce/700157#7001576Answer by Andrew Hedges for Jquery constantly ping for ajax responce.Andrew Hedges2009-03-31T05:41:04Z2009-03-31T05:41:04Z<blockquote>
<p>To iterate is human, to recurse divine.<br>
<a href="http://www.devtopics.com/101-great-computer-programming-quotes/" rel="nofollow">-L. Peter Deutsch</a></p>
</blockquote>
<pre><code>var req = function () {
$.ajax({
url : 'http://example.com/yourscript.php',
complete : function () {
req();
}
});
};
req();
</code></pre>
<p>In case it's not obvious, the above will make a new request as soon as the previous one completes, forever. You could also set a 1 second delay between requests as follows:</p>
<pre><code>var req = function () {
$.ajax({
url : 'http://example.com/yourscript.php',
complete : function () {
setTimeout(function () {
req();
}, 1000);
}
});
};
req();
</code></pre>
http://stackoverflow.com/questions/699215/what-is-this-kind-of-javascript-and-help-with-ajax-request/699438#6994380Answer by Andrew Hedges for What is this kind of javascript? And Help with AJAX request.Andrew Hedges2009-03-30T23:13:01Z2009-03-30T23:13:01Z<p>The problem could be that by default Ajax requests are usually POST requests, not GET. So, in your PHP script, looking for <code>$_GET['blah']</code> ain't gonna work. Try <code>$_POST['blah']</code> and let us know if you find the vars you're looking for.</p>
http://stackoverflow.com/questions/695772/most-marketable-web-development-skill/695863#6958630Answer by Andrew Hedges for Most Marketable Web Development SkillAndrew Hedges2009-03-30T02:44:04Z2009-03-30T02:44:04Z<p>Here's a different take on things: you could make yourself marketable by getting really good at integrating some popular CMS (Joomla, Drupal, WordPress, ExpressionEngine, etc.).</p>
<p>There is a lot of demand for people who can get small businesses up and running with content management and blogs. You could carve out a niche writing plug-ins as a way to market yourself.</p>
<p>Just an idea.</p>
http://stackoverflow.com/questions/690858/how-to-do-a-soft-if-condition-check-in-javascript/691161#6911613Answer by Andrew Hedges for How to do a "soft" if condition check in JavascriptAndrew Hedges2009-03-27T19:23:07Z2009-03-27T19:23:07Z<p>The following should be pretty much bullet-proof, but is a hassle and only works if you know the whole chain in advance:</p>
<pre><code>if ('undefined' !== typeof someObj &&
'undefined' !== typeof someObj.something &&
'undefined' !== typeof someObj.something.foo &&
'undefined' !== typeof someObj.something.foo.bar) {
// do some stuff
}
</code></pre>
<p>You might be better off to do as Chetan suggests and use a try/catch block instead:</p>
<pre><code>try {
if ('undefined' !== typeof someObj.something.foo.bar) {
// do some stuff
}
}
catch (e) {}
</code></pre>
http://stackoverflow.com/questions/672358/automated-unit-testing-for-javascript-integrated-with-cruisecontrol-nunit-nant/672388#6723881Answer by Andrew Hedges for Automated Unit testing for Javascript integrated with CruiseControl, nUnit, nAnt and ASP.net MVCAndrew Hedges2009-03-23T06:25:24Z2009-03-23T06:25:24Z<p>Just a couple of days ago, John Resig announced a JavaScript unit test automator he's working on called <strong><a href="http://ejohn.org/blog/javascript-testing-does-not-scale/" rel="nofollow">Test Swarm</a>.</strong> It's just now going into alpha, but it might be worth watching.</p>
http://stackoverflow.com/questions/668642/is-it-a-good-idea-to-learn-javascript-before-learning-jquery/668719#6687196Answer by Andrew Hedges for Is it a good idea to learn JavaScript before learning jQuery?Andrew Hedges2009-03-21T04:00:48Z2009-03-21T04:00:48Z<p>I'll go against the grain and say that, while ideally you would become proficient in JavaScript <strong>before</strong> learning jQuery, you can probably make great progress on both fronts by jumping in and coding using the library.</p>
<p>One of jQuery's strengths is that it makes it easier to do certain things in the browser. You can get a lot of real work done by cutting and pasting and adapting other people's code, so why not start doing that? As you go, when you encounter an idiom you don't quite understand, dig around and find out what it means or how it works.</p>
<p>Over time, you will become a master of both JavaScript and jQuery.</p>
<p>If you have any kind of programming background, a good book to read to get you up to speed quickly on JavaScript is Douglas Crockford's, <em>JavaScript: The Good Parts.</em></p>
http://stackoverflow.com/questions/620172/should-web-based-applications-follow-web-standards/620532#6205324Answer by Andrew Hedges for Should web based applications follow web standards?Andrew Hedges2009-03-06T21:38:27Z2009-03-06T22:14:47Z<p>It seems like the other people who have answered so far have <strong>no idea</strong> what you're talking about.</p>
<p>Like me, you've had it pounded into your head to make your web applications as accessible as possible. That is, they should work without scripting and without stylesheets. JavaScript and CSS should only be used to enhance the experience. They should not be required.</p>
<p><a href="http://www.sproutcore.com/" rel="nofollow">SproutCore</a> and <a href="http://cappuccino.org/" rel="nofollow">Cappuccino</a> are frameworks for <em>front-end</em> development that require the user to have both JavaScript and CSS enabled. Your question is around how we reconcile this with the dogma of the day.</p>
<p>Unfortunately, I don't have a clear-cut answer. I like the fact that SproutCore and Cappuccino (and probably others) are testing the limits of what's possible within a web browser. I also believe firmly that information and services provided on the web should be available to as many people as possible, given the limitations of the technology.</p>
<p>How you approach your solutions needs to be based on a deep knowledge of your user-base. If you're working on an iPhone app, you don't need to worry about traditional web accessibility because the experience is intensely visual. If you're building a web application for a general audience, these new frameworks are probably a poor choice (if you value the widest possible access to your information and services).</p>
<p>Over time, screen reader software is likely to get better at interpreting JavaScript-heavy interfaces, so perhaps this issue will fade. Thing is, something else is likely to "sprout" up in its place.</p>
http://stackoverflow.com/questions/227738/is-there-an-upper-limit-to-z-index-values-in-web-browsers4Is there an upper limit to z-index values in web browsers?Andrew Hedges2008-10-22T22:20:07Z2009-03-06T07:34:58Z
<p>I have a case where a 3rd party ad is bleeding through my modal window implementation. I'd like to up the z-index of the modal overlay as high as possible so the ad won't show on top of it. Is there a limit to z-index values? I'm sure if there is it varies by browser. Anyone know?</p>
http://stackoverflow.com/questions/611748/why-wont-an-anchor-tag-generated-with-jquery-fire-its-onclick-event/611861#6118611Answer by Andrew Hedges for Why won't an anchor tag generated with JQuery fire its onclick event?Andrew Hedges2009-03-04T18:31:54Z2009-03-04T18:31:54Z<p>If you're using jQuery 1.3 or above, you could use "live" event binding to attach the click event to any <A> tags you add to your page. E.g.:</p>
<pre><code>$('a').live('click', function (evt) {
alert('Hello');
evt.preventDefault();
});
var link = $.create('a', {
'id' : 'xxx',
'href' : 'http://localhost/'
});
$('#container').append(link);
</code></pre>
http://stackoverflow.com/questions/588413/json-structure-not-working-in-ie7-javascript/609255#6092550Answer by Andrew Hedges for JSON structure not working in IE7 (JavaScript)Andrew Hedges2009-03-04T04:42:54Z2009-03-04T04:42:54Z<p>I've run into problems when using reserved words for object literal properties. It works fine in Firefox and Safari, but bombs in IE. Here's the one that usually trips me up:</p>
<pre><code>{
class : 'my-css-class'
}
</code></pre>
<p>That's what I'd check for first. YMMV.</p>
http://stackoverflow.com/questions/607451/next-step-for-a-self-taught-developer/607661#6076610Answer by Andrew Hedges for Next Step for a Self-Taught Developer?Andrew Hedges2009-03-03T19:02:13Z2009-03-03T19:02:13Z<p>I don't know how to answer this question for you. As some Eastern philosopher has surely said, the answer must come from within you.</p>
<p>But, I can relate to your dilemma, being self-taught as well. The outlet for me has been <a href="http://tr.im/wdgts" rel="nofollow">Dashboard widgets</a>. They're not terribly difficult to build, but they're satisfying from the standpoint of being able to work through a problem from start to finish. Best of luck!</p>
http://stackoverflow.com/questions/204813/does-it-still-make-sense-to-use-html-comments-on-blocks-of-javascript/251722#251722Comment by Andrew Hedges on Does it still make sense to use HTML comments on blocks of JavaScript?Andrew Hedges2009-09-21T03:23:20Z2009-09-21T03:23:20Ztype="text/javascript" is ignored by browsers in favor of the MIME type sent by the server. It's omission was intentional.http://stackoverflow.com/questions/723592/why-doesnt-contenteditable-work-on-the-iphone/1059795#1059795Comment by Andrew Hedges on Why doesn't @contenteditable work on the iPhone?Andrew Hedges2009-09-10T09:39:58Z2009-09-10T09:39:58ZThis is an excuse, not an answer. In desktop Safari, you don't get any fancy controls, just the ability to type into an element. Surely, iPhone can support that.http://stackoverflow.com/questions/1149417/font-face-is-deprecated-on-the-iphone-version-of-safari-what-are-my-alternative/1149478#1149478Comment by Andrew Hedges on @font-face is deprecated on the iPhone version of Safari. What are my alternatives?Andrew Hedges2009-07-21T01:17:47Z2009-07-21T01:17:47ZAh, right. I didn't know you could do that in Cufón. Thanks!http://stackoverflow.com/questions/1149417/font-face-is-deprecated-on-the-iphone-version-of-safari-what-are-my-alternative/1149480#1149480Comment by Andrew Hedges on @font-face is deprecated on the iPhone version of Safari. What are my alternatives?Andrew Hedges2009-07-20T05:33:22Z2009-07-20T05:33:22ZI need to show random numbers in quick succession, and in a range of approximately -10k to 10k. Too much to cache. Maybe I need to show combinations of images of the individual numbers, 0-9.http://stackoverflow.com/questions/1149417/font-face-is-deprecated-on-the-iphone-version-of-safari-what-are-my-alternative/1149478#1149478Comment by Andrew Hedges on @font-face is deprecated on the iPhone version of Safari. What are my alternatives?Andrew Hedges2009-07-20T05:32:11Z2009-07-20T05:32:11ZI've used Cufón before and like it. I want to show a series of numbers in quick succession and I don't think Cufón can change the text once it's been converted.http://stackoverflow.com/questions/1146174/using-javascript-to-model-3d-polyhedra/1146185#1146185Comment by Andrew Hedges on Using JavaScript to model 3D polyhedraAndrew Hedges2009-07-18T00:11:39Z2009-07-18T00:11:39ZI'd settle for even numbers. The point is, I want to get polyhedra with however many sides the user requests. The SVG solution looks pretty solid.http://stackoverflow.com/questions/1146174/using-javascript-to-model-3d-polyhedra/1146189#1146189Comment by Andrew Hedges on Using JavaScript to model 3D polyhedraAndrew Hedges2009-07-18T00:06:25Z2009-07-18T00:06:25ZI like this idea. Should be very lightweight to implement (possibly all CSS). If the SVG solution above proves cumbersome, I'll pursue this and blog it up.http://stackoverflow.com/questions/1146174/using-javascript-to-model-3d-polyhedra/1146214#1146214Comment by Andrew Hedges on Using JavaScript to model 3D polyhedraAndrew Hedges2009-07-18T00:05:04Z2009-07-18T00:05:04ZThis just might be the ticket. Thanks, Andrew!http://stackoverflow.com/questions/1146174/using-javascript-to-model-3d-polyhedra/1146185#1146185Comment by Andrew Hedges on Using JavaScript to model 3D polyhedraAndrew Hedges2009-07-17T23:56:28Z2009-07-17T23:56:28ZTruth be told, I want to model polyhedra with "any" number of sides (up to, at least, 100). I'm new to 3D, so I was hoping there was a lib where I can just say, give me a polyhedra with 17 sides, please. :-)http://stackoverflow.com/questions/1146174/using-javascript-to-model-3d-polyhedra/1146189#1146189Comment by Andrew Hedges on Using JavaScript to model 3D polyhedraAndrew Hedges2009-07-17T23:55:12Z2009-07-17T23:55:12ZThat's intriguing. I've been experimenting a lot with 2D transforms lately (<a href="http://segdeha.com/experiments/css-transitions/" rel="nofollow">segdeha.com/experiments/css-transitions</a>). How could that be applied to building polyhedra with arbitrary numbers of sides?http://stackoverflow.com/questions/64420/how-can-i-write-an-iphone-app-entirely-in-javascript-without-making-it-just-a-web/1003828#1003828Comment by Andrew Hedges on How can I write an iPhone app entirely in JavaScript without making it just a web app?Andrew Hedges2009-07-17T10:05:52Z2009-07-17T10:05:52ZThis is not a discussion forum. If you can't be bothered to look up what is plainly stated in the PhoneGap docs, then ask a new question. <a href="http://lmgtfy.com/?q=PhoneGap" rel="nofollow">lmgtfy.com/?q=PhoneGap</a>http://stackoverflow.com/questions/64420/how-can-i-write-an-iphone-app-entirely-in-javascript-without-making-it-just-a-web/436130#436130Comment by Andrew Hedges on How can I write an iPhone app entirely in JavaScript without making it just a web app?Andrew Hedges2009-07-17T10:04:41Z2009-07-17T10:04:41ZWhy not ask this as a new question? This is not a discussion forum.http://stackoverflow.com/questions/1121850/select-percentage-of-rows-with-different-values/1121930#1121930Comment by Andrew Hedges on Select percentage of rows with different valuesAndrew Hedges2009-07-13T20:56:09Z2009-07-13T20:56:09ZTurns out you need a where clause on both the inner and outer selects.http://stackoverflow.com/questions/1062902/how-random-is-javascripts-math-random/1063871#1063871Comment by Andrew Hedges on How random is JavaScript's Math.random?Andrew Hedges2009-07-02T10:21:34Z2009-07-02T10:21:34ZThat's helpful, thanks!http://stackoverflow.com/questions/1067166/using-css-text-overflow-to-vary-the-number-of-lines-of-text-within-an-element-of/1067199#1067199Comment by Andrew Hedges on Using CSS text-overflow to vary the number of lines of text within an element of a set heightAndrew Hedges2009-07-01T04:39:13Z2009-07-01T04:39:13ZInteresting idea. I tried it and it does force an ellipsis, but puts the content on 2 lines, where I want 3. It would cause me to need to break lines server-side to get the effect, which is what I'm trying to avoid. Thanks for the idea, though.