User Bobby Jack - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T07:17:40Zhttp://stackoverflow.com/feeds/user/5058http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1211507/how-to-track-anchor-tags-with-google-analytics2How to track anchor tags with Google AnalyticsBobby Jack2009-07-31T09:17:52Z2009-11-19T18:08:52Z
<p>I'm trying to track clicks via Google Analytics that do not result in a new request. Specifically, clicks on tabs that are created via the <a href="http://jqueryui.com/demos/tabs/" rel="nofollow">jQuery UI tabs widget</a>. I'm using the older version of the code ('urchin tracker') and trying to log the clicks like so:</p>
<pre><code>$('.ui-tabs-nav li a').click(function() {
val = "/tab/" + $(this).attr('href');
// when uncommented, the following line reports, for example:
// /tab/#main
// as expected.
// console.log(val);
res = urchinTracker(val);
});
</code></pre>
<p>The same method works, in another instance, whose only significant difference, as far as I can tell, is the lack of a hash (#) symbol in the string. Is that character not allowed in a string tracked by <code>urchinTracker()</code>, or could there be some other cause (other than no-one having clicked on the links!)?</p>
http://stackoverflow.com/questions/1748785/why-does-the-google-geocoder-give-different-results-from-the-map-search0Why does the google geocoder give different results from the map search?Bobby Jack2009-11-17T13:13:28Z2009-11-17T17:55:13Z
<p>For example, searching for "36 High Street Clapham London SW4 7UR" using the <a href="http://gmaps-samples.googlecode.com/svn/trunk/geocoder/singlegeocode.html" rel="nofollow">geocoder</a> gives a significantly different location from the <a href="http://maps.google.co.uk/" rel="nofollow">main map search</a>, rendering the geocoding service useless, for my purposes at least.</p>
<p>Anyone know why this is and if there's a workaround?</p>
http://stackoverflow.com/questions/357219/whats-your-favourite-character14What's your favourite character? [closed]Bobby Jack2008-12-10T19:15:07Z2009-11-16T17:04:04Z
<p>In the symbolic sense, not the dramatic sense. And I'm talking about function rather than design (although that's an interesting question, too).</p>
http://stackoverflow.com/questions/543513/getting-last-child-of-div/1651291#16512910Answer by Bobby Jack for Getting 'Last Child' of Div ?Bobby Jack2009-10-30T17:38:43Z2009-10-30T17:38:43Z<p>There are some cases in which you definitely don't want to use $("div:last-child") out of the box. One important thing to note is that this won't cater for changes to the DOM after that call - e.g. if a new element is added as the last child, you'll need to update things. It's not just a case of repeating the earlier call, either; you'll need to reverse the initial call on the previous last child.</p>
<p>If you're doing anything vaguely dynamic, be wary of this. the CSS pseudo-class is <em>definitely</em> the superior solution, it just has a horrible lack of support in IE. If your design can cope with the loss of last-child support in IE, and you're using progressive enrichment, I'd highly recommend the CSS approach over JS.</p>
http://stackoverflow.com/questions/1643321/javascript-why-the-anonymous-function-wrapper4JavaScript: Why the anonymous function wrapper?Bobby Jack2009-10-29T12:19:24Z2009-10-30T03:31:56Z
<p>It's very common nowadays for Javascript libraries / functions / code snippets to be encapsulated with an anonymous function, e.g.</p>
<pre><code>(function () {
// code to be executed goes here
})();
</code></pre>
<p>As far as I can tell, that should be completely superfluous: that anonymous function just executes the code within. However, there's obviously a reason behind this! :-)</p>
<p>I've seen an occurrence of this with a comment alongside the first line: "// function wrapper for Opera".</p>
<p>Does anyone know why this code is commonly used, what the history of its development is, and what the relation with Opera is?</p>
http://stackoverflow.com/questions/1624045/reddot-processing-dynamic-links-using-render-tags0RedDot: Processing dynamic links using render tagsBobby Jack2009-10-26T10:19:55Z2009-10-26T10:19:55Z
<p>How can I iterate over a list of dynamic links using render tags? The methods I've tried are only recognising a single link, rather than the 3 I've defined.</p>
http://stackoverflow.com/questions/1196085/reddot-liveserver-dynament-error0RedDot LiveServer dynament errorBobby Jack2009-07-28T18:58:51Z2009-10-20T15:20:07Z
<p>How do I go about debugging what a return code of -26504 means? It's the result of a 'content' dynament of type 'import'.</p>
http://stackoverflow.com/questions/1411937/how-can-i-reliably-track-mouse-enter-and-leave-events0How can I reliably track mouse enter and leave events?Bobby Jack2009-09-11T16:19:58Z2009-09-11T16:36:39Z
<p>Various experiments I've carried out indicate that there is no foolproof way of responding to a 'mouseleave' event using jQuery. Two actions appear to not trigger any relevant event:</p>
<ol>
<li>Moving the pointer away from an element very quickly</li>
<li>Moving the pointer off the element via some browser chrome (or out the the window entirely)</li>
</ol>
<p>The second is by no means a show-stopper, but the first is a big problem. Is there a solution? Tracking document.mousemove and continually checking whether the cursor is over the target element?</p>
http://stackoverflow.com/questions/1311333/reddot-referencing-an-element-in-a-templates-container0RedDot: referencing an element in a template's container Bobby Jack2009-08-21T11:05:39Z2009-08-21T11:05:39Z
<p>I have a template with ~ 50 existing instances. I now need to add an
element to a container within those pages, so I've referenced the
content on a container within the template. However, the existing
pages have not picked that reference up - how do I 'apply' this
reference to existing instances? </p>
http://stackoverflow.com/questions/1150297/google-map-jquery-rendering-bug2Google map + jQuery: rendering bugBobby Jack2009-07-19T16:48:05Z2009-08-19T11:58:14Z
<p>When placing a google map inside a jquery-ui tab, the map fails to display properly in certain circumstances. To reproduce:</p>
<ol>
<li>Go <a href="http://www.fiveminuteargument.com/html/map-test.html" rel="nofollow">here</a></li>
<li>Click the 'list' link</li>
<li>Resize the browser window</li>
<li>Click the 'map' link</li>
</ol>
<p>Observe that some of the place name overlays draw properly, but others do not. I've actually stripped out all of the jquery-ui stuff to limit the scope of the problem, and it appears to be just the application of display:hide/display:block that causes the problem.</p>
<p><strong>UPDATE</strong></p>
<p>The bug also occurs, occasionally, just when toggling between display:none/block - e.g. no resizing occurs. This seems to be most common in IE(8).</p>
http://stackoverflow.com/questions/173851/what-is-the-canonical-way-to-determine-commandline-vs-http-execution-of-a-php-sc4What is the canonical way to determine commandline vs. http execution of a PHP script?Bobby Jack2008-10-06T10:51:04Z2009-08-05T18:51:14Z
<p>I have a PHP script that needs to determine if it's been executed via the command-line or via HTTP, primarily for output-formatting purposes. What's the canonical way of doing this? I had thought it was to inspect <code>SERVER['argc']</code>, but it turns out this is populated, even when using the 'Apache 2.0 Handler' server API.</p>
http://stackoverflow.com/questions/1159413/make-php-code-as-small-as-possible-while-not-reducing-performance/1212626#12126260Answer by Bobby Jack for Make PHP code as small as possible while not reducing performance?Bobby Jack2009-07-31T13:45:17Z2009-07-31T13:45:17Z<p>If you do this, please don't release the source code in any form - keep it as a personal project, for your own interest. Trying to reduce the footprint of a body of code to the maximum degree possible is not entirely without merit (as a learning exercise), but it will be very difficult for anyone else to work with, and you won't win many friends with it :)</p>
http://stackoverflow.com/questions/1174152/css-child-font-size-using-em/1174177#11741770Answer by Bobby Jack for CSS - child font-size using emBobby Jack2009-07-23T20:09:16Z2009-07-23T20:09:16Z<blockquote>
<p>I want all li's in this list to be sized to 0.85em of the ul's parent</p>
</blockquote>
<pre><code>body > ul { font-size: 0.85em; }
</code></pre>
<p>would do that</p>
http://stackoverflow.com/questions/1119274/adding-pages-on-the-fly-with-a-cms-system/1154679#11546790Answer by Bobby Jack for Adding pages "on the fly" with a CMS systemBobby Jack2009-07-20T16:54:48Z2009-07-20T16:54:48Z<p>Although the existing advice is more-or-less sound, the commentators have failed to consider one factor which, admittedly, you haven't given much detail on. Are these pages that they'll edit once they're built, or a they one-shot creations? If the latter, your plan of generating static pages isn't quite so bad as they suggest. Why bother even having to think about database schemas and caching, when you can just serve flat content.</p>
<p>It will probably make for pretty lifeless, end-of-the-road pages, but if that's what you want ...</p>
http://stackoverflow.com/questions/1150297/google-map-jquery-rendering-bug/1150929#11509291Answer by Bobby Jack for Google map + jQuery: rendering bugBobby Jack2009-07-19T21:16:42Z2009-07-19T21:16:42Z<p>From the <a href="http://jqueryui.com/demos/tabs/" rel="nofollow">online docs</a>:</p>
<blockquote>
<p>Use the off-left technique for hiding
inactive tab panels. E.g. in your
style sheet replace the rule for the
class selector ".ui-tabs .ui-tabs-hide" with </p>
<pre><code>.ui-tabs .ui-tabs-hide {
position: absolute;
left: -10000px;
}
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1150221/font-size-and-line-height-for-a-web-page/1150232#11502322Answer by Bobby Jack for Font size and line height for a Web pageBobby Jack2009-07-19T16:18:03Z2009-07-19T16:23:11Z<p>As with every other "what's the best" question in the world, the answer to this is "there is no 'best'" :-)</p>
<p>For font-size, arguably the 'best' is whatever the user has chosen themselves, either as the default or the minimum. In other words, leave the font size alone for main body copy, and only increase it for headings. You <em>might</em> consider decreasing it by a <em>very small</em> amount for non-critical content. 16px is generally the browser default.</p>
<p>For line-height, values between 1.3 and 1.5 are typically recommended for good readability, although this varies with font face and line length.</p>
http://stackoverflow.com/questions/1149956/please-recommend-resources-for-experienced-developer-new-to-c/1149961#114996114Answer by Bobby Jack for Please recommend resources for experienced developer new to CBobby Jack2009-07-19T14:03:17Z2009-07-19T14:03:17Z<p>The <a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">C Programming Language, 2nd edition</a> (Kernighan + Ritchie) is the ultimate resource. Small, easy to read, and a great reference.</p>
<p><img src="http://ecx.images-amazon.com/images/I/51TGEPRTDNL.%5FSL500%5FAA240%5F.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/1086200/reddot-linking-referencing-lists-and-partial-pages2RedDot: Linking, referencing, lists and 'partial pages'Bobby Jack2009-07-06T09:27:17Z2009-07-17T00:24:09Z
<p><strong>UPDATED</strong></p>
<p>Using RedDot CMS, linking to a 'sub-page' (page within a page) directly will display JUST that sub-page, not within the context of its main parent. Referencing that sub-page WILL display it as I require.</p>
<p>I have a List linked to several pages via keywords. The template containing that list displays a link for each item. Clicking on any of these links results in a view of JUST the sub-page that is directly linked.</p>
<p>I require those links to display the sub-page within the context of its parent - e.g. the page on which its main link resides.</p>
<p>Let's say the base page has an ID of 100. It has a list containing sub-pages 201, 301, and 401. Respectively, each sub-pages' main link is 200, 300, and 400. When I view 100, I see that base page with a series of links to each page. However, clicking on any of those links displays page 201, 301, or 401. I require those links to point to pages 200, 300, and 400.</p>
<p>I cannot use target containers because each sub-page has a different parent.</p>
http://stackoverflow.com/questions/1140781/can-i-get-feedback-on-this-php-function-that-tests-if-a-user-has-signed-up/1140823#11408230Answer by Bobby Jack for Can I get feedback on this PHP function that tests if a user has signed up?Bobby Jack2009-07-16T23:31:01Z2009-07-16T23:31:01Z<p>Also,</p>
<pre><code>if (condition) {
return true;
}
else {
return false;
}
</code></pre>
<p>can be rewritten as:</p>
<pre><code>return condition;
</code></pre>
<p>which saves quite a bit of typing and reading :)</p>
http://stackoverflow.com/questions/1140808/php-sessions-vs-database/1140815#11408153Answer by Bobby Jack for php: sessions vs. databaseBobby Jack2009-07-16T23:27:47Z2009-07-16T23:27:47Z<p>Depends what you mean by 'efficient'. One's time-efficient, one's disk-space-efficient. And it's very difficult to judge the two against each other, unless your requirements are at either extreme end of the spectrum. You'd probably do OK just flipping a coin, measuring performance over time, and adjusting based on any observed problems.</p>
<blockquote>
<p>Premature optimisation is the root of
all evil.</p>
</blockquote>
http://stackoverflow.com/questions/950628/mysql-how-to-get-n-latest-rows-of-a-distinct-type3MySQL: How to get n latest rows of a distinct typeBobby Jack2009-06-04T13:34:16Z2009-07-16T23:14:46Z
<p>Putting this as simply as I can, I have the following table structure:</p>
<p><code>Date | Type | Title</code></p>
<p>Say <code>Type</code> is a value in the range 1-10, I have 1,000s of records in the table, and I want the 5 most recent records of unique type. So the result would be something like:</p>
<p><code>2009-06-04 14:32:00 | 4 | Zeppo</code></p>
<p><code>2009-06-04 14:31:00 | 2 | Groucho</code></p>
<p><code>2009-06-04 14:30:00 | 8 | Harpo</code></p>
<p><code>2009-06-04 14:29:00 | 5 | Gummo</code></p>
<p><code>2009-06-04 14:28:00 | 3 | Chico</code></p>
<p>Seems like I either want <code>DISTINCT</code> to only apply to the <code>Type</code> column, or I want a <code>GROUP BY</code> which will apply <em>after</em> an <code>ORDER BY</code> clause.</p>
<p>All in MySQL 4.</p>
http://stackoverflow.com/questions/1128454/how-to-interpret-test-every-scenario-you-can-think-of/1128462#112846218Answer by Bobby Jack for How to interpret 'test every scenario you can think of'Bobby Jack2009-07-14T22:38:21Z2009-07-14T23:02:15Z<ul>
<li>Every browser</li>
<li>Every operating system</li>
<li>A variety of screen resolutions</li>
<li>Javascript on/off</li>
<li>Images on/off</li>
<li>CSS on/off</li>
<li>Cookies enabled/disabled</li>
<li>Messing about with URLs</li>
<li>All sorts of input variations, especially testing for XSS attacks, non-ASCII characters, invalid input</li>
<li>Keyboard accessibility</li>
<li>Server related issues - e.g. does the application work OK after a software/hardware restart?</li>
<li>Opening the site in more than one tab/window is a good way of testing any strange session-related issues</li>
</ul>
http://stackoverflow.com/questions/600918/reinventing-cms/1128445#11284452Answer by Bobby Jack for Reinventing CMSBobby Jack2009-07-14T22:33:55Z2009-07-14T22:33:55Z<p>I think the analogy is quite good, especially regarding all CMS applications being 'suboptimal'. Here's my take:</p>
<ul>
<li><p>A Content <strong>Management</strong> System should do just that: manage content. It shouldn't provide a flaky, tag-soup spewing WYSIWYG text editor (for any medium, let alone one that is inherently <strong>not</strong> WYSIWYG). It shouldn't provide yet-another-templating-system written in its own invented 'language'. It shouldn't be about calendars, forums, or any other bells and whistles the creators threw in to raise the purchase price a dollar or two.</p></li>
<li><p>The CMS products I've used of late have been <strong>insanely</strong> complicated. Not just for the developer tasked with structuring a site, but for those editing the content, too. The current product I'm forced to use has a very sharp learning curve, and (like many products designed to make things 'easier') hampers the experts too. When combined with the amount of training required, it turns out that the slice of people who actually benefit from using the CMS is really small. I could teach those people HTML <strong>far</strong> quicker than it takes to teach them how to use the CMS with its built-in 'WYSIWYG' editor.</p></li>
<li><p>For some unfathomable reason, CMSes have a tendency to reinvent the wheel. This isn't just limited to text-editors: custom versioning is a particular cause of personal frustration.</p></li>
</ul>
<p>Er, that's all for now; I may add further thoughts later. In short: KISS.</p>
http://stackoverflow.com/questions/1122218/to-understand-the-practical-use-of-greps-option-h-in-different-situations/1122230#11222304Answer by Bobby Jack for To understand the practical use of Grep's option -H in different situationsBobby Jack2009-07-13T21:38:31Z2009-07-13T22:50:33Z<p>If you grep a single file, -H makes a difference:</p>
<pre><code>$ grep muel mesi
muel
$ grep -H muel mesi
masi:muel
</code></pre>
<p>This could be significant in various scripting contexts. For example, a script (or a non-trivial piped series of commands) might not be aware of how many files it's actually dealing with: one, or many.</p>
http://stackoverflow.com/questions/1118570/how-to-enter-tags-correctly/1122442#11224420Answer by Bobby Jack for How to enter tags correctly?Bobby Jack2009-07-13T22:28:45Z2009-07-13T22:28:45Z<p>You can <em>probably</em> get away with the very succinct:</p>
<p><code>$tags = array_filter(explode(',', $str));</code></p>
<p>since (from the manual for <a href="http://uk3.php.net/manual/en/function.array-filter.php" rel="nofollow"><code>array_filter</code></a>):</p>
<blockquote>
<p>If no callback is supplied, all entries of input equal to FALSE (see converting to boolean) will be removed. </p>
</blockquote>
<p>(That's if you don't mind rejecting '0', and other values that evaluate to FALSE)</p>
http://stackoverflow.com/questions/1122395/php-session-and-path-setting/1122398#11223983Answer by Bobby Jack for php session and path settingBobby Jack2009-07-13T22:18:32Z2009-07-13T22:18:32Z<p>The rest of that error is the <em>exact bit</em> that will tell you where the problem is! Chances are you have some trailing whitespace at the end of config.php.</p>
<p>(Either that, or session.php sends output before your call to <code>session_start()</code>, but I'm really just guessing now :)</p>
http://stackoverflow.com/questions/1121801/have-a-script-to-handle-http-errors/1122392#11223920Answer by Bobby Jack for Have a script to handle http errors.Bobby Jack2009-07-13T22:16:22Z2009-07-13T22:16:22Z<p>Do you have access to your apache config? If so, just specify custom files (404.html, 500.html, etc.) and populate them with appropriate HTML and CSS to make them as 'pretty' as you like. Or is there more of a problem here?</p>
http://stackoverflow.com/questions/1122261/php-check-if-domain-equals-value-then-perform-action/1122276#11222760Answer by Bobby Jack for php check if domain equals value, then perform actionBobby Jack2009-07-13T21:48:45Z2009-07-13T21:48:45Z<p>Have you tried <code><a href="http://uk3.php.net/manual/en/function.parse-url.php" rel="nofollow">parse_url</a>()</code>?</p>
<p>Note that you might also want to <code>explode()</code> the resulting domain on <code>'.'</code>, depending on exactly what you mean by 'domain'.</p>
http://stackoverflow.com/questions/1069919/how-do-i-determine-the-length-of-a-list-in-reddot1How do I determine the length of a list in RedDot?Bobby Jack2009-07-01T15:46:09Z2009-07-09T22:56:14Z
<p>I have a page with a list element attached. How do I determine the number of items in that list? Can use render tags, asp, or any other technique (so long as it works!)</p>
http://stackoverflow.com/questions/1102650/unix-wrapper-in-php3UNIX wrapper in PHPBobby Jack2009-07-09T08:54:53Z2009-07-09T15:06:24Z
<p>For a simple web application, I'd like to be able to take advantage of several UNIX features that are stable, have a long history, and are well proven in production, rather than having to write my own code. Take users, for example. Rather than having an entire user, group, permission infrastructure in my webapp, I'd like to be able to simply piggyback on top of the equivalent features of UNIX.</p>
<p>Is there a PHP library that will allow me to register users, log them in, manage permissions, etc. ?</p>
http://stackoverflow.com/questions/543513/getting-last-child-of-div/543546#543546Comment by Bobby Jack on Getting 'Last Child' of Div ?Bobby Jack2009-10-30T17:40:13Z2009-10-30T17:40:13ZWhat do you mean by "In pure CSS it can't be done"? Do you mean "not every browser supports it" or something else?http://stackoverflow.com/questions/1083653/jquery-dynamic-id-control-property/1083662#1083662Comment by Bobby Jack on JQuery dynamic ID control propertyBobby Jack2009-10-30T17:26:01Z2009-10-30T17:26:01ZA perfect SO answer - complete, succinct, and correct! :)http://stackoverflow.com/questions/1643321/javascript-why-the-anonymous-function-wrapperComment by Bobby Jack on JavaScript: Why the anonymous function wrapper?Bobby Jack2009-10-29T12:57:36Z2009-10-29T12:57:36ZI don't live in NY, Ewan, so "no" :-) Purely coincidental - something I've been wondering about for a while.http://stackoverflow.com/questions/1643321/javascript-why-the-anonymous-function-wrapperComment by Bobby Jack on JavaScript: Why the anonymous function wrapper?Bobby Jack2009-10-29T12:51:44Z2009-10-29T12:51:44ZSorry, Nick - I checked the related questions when asking this one, but the first you refer to didn't appear at all, and the second appeared 13th in the list. Whilst I always try to check the content of related questions, it's quite a barrier to have to read through 13 others before posting. I'm sure there's a meta discussion on this topic ...http://stackoverflow.com/questions/1643321/javascript-why-the-anonymous-function-wrapper/1643340#1643340Comment by Bobby Jack on JavaScript: Why the anonymous function wrapper?Bobby Jack2009-10-29T12:30:17Z2009-10-29T12:30:17ZSo the reference to Opera in example code is irrelevant/wrong?http://stackoverflow.com/questions/1643321/javascript-why-the-anonymous-function-wrapper/1643364#1643364Comment by Bobby Jack on JavaScript: Why the anonymous function wrapper?Bobby Jack2009-10-29T12:29:44Z2009-10-29T12:29:44ZThat's a more specific variation on the original question, but it's still good info! :)http://stackoverflow.com/questions/1311287/jquery-setting-the-selected-attribute-on-a-select-list/1311311#1311311Comment by Bobby Jack on JQuery setting the selected attribute on a select listBobby Jack2009-08-21T11:08:48Z2009-08-21T11:08:48ZIs there a reason to use .find() rather than $('#dropdown option')? More efficient? The "var $this" stuff also looks wrong to me ...http://stackoverflow.com/questions/1260099/position-a-picture-in-the-middle/1260138#1260138Comment by Bobby Jack on position a picture in the middleBobby Jack2009-08-11T13:06:28Z2009-08-11T13:06:28ZThe first suggestion is only appropriate if he's talking about a decorative image of some sort; if it's an image that's actually part of the content, don't do this. The second would probably be better done with margins.http://stackoverflow.com/questions/1259123/how-can-i-display-an-image-using-the-em-unit/1259159#1259159Comment by Bobby Jack on How can I display an image using the "em" unit?Bobby Jack2009-08-11T12:57:59Z2009-08-11T12:57:59ZNo point in repeating the exact same width/height values. You might as well either a) Do away with the enclosing div or b) change the image's values to 100%.http://stackoverflow.com/questions/1211507/how-to-track-anchor-tags-with-google-analytics/1254721#1254721Comment by Bobby Jack on How to track anchor tags with Google AnalyticsBobby Jack2009-08-11T09:53:01Z2009-08-11T09:53:01ZSure - by "explicit", I meant whether an argument is passed to urchinTracker() or not. Surely that function can base its decision on whether an explicit string was provided or not. That way, clients wouldn't have to worry about any disallowed characters (I wonder if there are any others, for example).http://stackoverflow.com/questions/1211507/how-to-track-anchor-tags-with-google-analytics/1254721#1254721Comment by Bobby Jack on How to track anchor tags with Google AnalyticsBobby Jack2009-08-10T16:16:10Z2009-08-10T16:16:10ZBTW, how do you know this? I couldn't find that info on Google's site anywhere. Obviously, it makes a bit of sense that it would work that way, but I would have thought the script could differentiate between an implicit tracking hit containing a fragment identifier, and an explicit call to the tracking function.http://stackoverflow.com/questions/1211507/how-to-track-anchor-tags-with-google-analytics/1254721#1254721Comment by Bobby Jack on How to track anchor tags with Google AnalyticsBobby Jack2009-08-10T16:00:27Z2009-08-10T16:00:27ZYup, that definitely seems to be it. Have upvoted your answer.http://stackoverflow.com/questions/1211507/how-to-track-anchor-tags-with-google-analytics/1254721#1254721Comment by Bobby Jack on How to track anchor tags with Google AnalyticsBobby Jack2009-08-10T13:00:32Z2009-08-10T13:00:32ZThanks for the suggestion. In actual fact, I'm testing a similar approach in which I simply call .substring(1) to drop the leading '#'. If this works (of course, it takes a while to confirm this!) I'll accept your answer.http://stackoverflow.com/questions/173851/what-is-the-canonical-way-to-determine-commandline-vs-http-execution-of-a-php-sc/1235061#1235061Comment by Bobby Jack on What is the canonical way to determine commandline vs. http execution of a PHP script?Bobby Jack2009-08-09T22:30:23Z2009-08-09T22:30:23ZAh - either I was being incredibly unobservant that day, or the example has been updated since I made that comment. Wholeheartedly agree with your points about PHP, though; the bashing gets VERY tiring.http://stackoverflow.com/questions/1191356/what-would-be-a-good-way-to-make-a-school-library-website-language-framework-c/1191364#1191364Comment by Bobby Jack on What would be a good way to make a school library website? Language, Framework, CMS?Bobby Jack2009-07-31T13:24:11Z2009-07-31T13:24:11ZThat shouldn't be an issue unless you plan to integrate those libraries into a closed-source product. Your question implies you just want something to use as part of the backend of a website; a huge number of websites use open-source tools (web server / os / scripting language / libraries / etc.) without compromising their business model.