User Ryan Doherty - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T02:48:46Z http://stackoverflow.com/feeds/user/956 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1890434/javascript-library-for-drawing-graphs-over-timelines-zoomable-and-selectable/1890510#1890510 0 Answer by Ryan Doherty for Javascript library for drawing Graphs over Timelines (zoomable and selectable) Ryan Doherty 2009-12-11T20:02:12Z 2009-12-11T20:02:12Z <p>A few good ones are:</p> <ul> <li><a href="http://www.simile-widgets.org/timeplot/" rel="nofollow">Timeplot</a></li> <li><a href="http://code.google.com/p/flot/" rel="nofollow">Flot</a></li> <li><a href="http://www.danvk.org/dygraphs/" rel="nofollow">dygraphs</a></li> <li><a href="http://highcharts.com/" rel="nofollow">highcharts</a></li> </ul> http://stackoverflow.com/questions/1797535/html-canvas-element-implemented-in-flash/1857645#1857645 0 Answer by Ryan Doherty for HTML Canvas element implemented in Flash? Ryan Doherty 2009-12-07T03:25:57Z 2009-12-07T03:25:57Z <p>For older browsers (namely IE), you can use ExplorerCanvas: <a href="http://code.google.com/p/explorercanvas/" rel="nofollow">http://code.google.com/p/explorercanvas/</a>, which simulates canvas in IE using SVG I think.</p> http://stackoverflow.com/questions/1188770/is-it-time-to-start-developing-with-html5/1857628#1857628 1 Answer by Ryan Doherty for Is it time to start developing with HTML5? Ryan Doherty 2009-12-07T03:20:14Z 2009-12-07T03:20:14Z <p>The answer is most certainly YES. Firefox, Safari, Chrome and Opera make up more than 30% of the market and they support many HTML5 standards:</p> <ul> <li>Audio &amp; video tag</li> <li>New tags (footer, header, section, etc)</li> <li>Canvas</li> <li>HTML5 doctype (&lt;!DOCTYPE html&gt;)</li> </ul> <p><a href="http://validator.w3.org" rel="nofollow">validator.w3.org</a> supports HTML5 validation (it's experimental, but it seems stable)</p> <p>For IE you can use these things to make some HTML5 elements work:</p> <ul> <li>HTML5 shiv: <a href="http://ejohn.org/blog/html5-shiv/" rel="nofollow">http://ejohn.org/blog/html5-shiv/</a> , this allows you to style new tags in IE</li> <li>Fallbacks for IE when using the video tag: <a href="http://hacks.mozilla.org/2009/06/html5-video-fallbacks-markup/" rel="nofollow">http://hacks.mozilla.org/2009/06/html5-video-fallbacks-markup/</a></li> <li>ExplorerCanvas: <a href="http://code.google.com/p/explorercanvas/" rel="nofollow">http://code.google.com/p/explorercanvas/</a> , allows the use of canvas in IE</li> <li>And IE supports the HTML5 doctype, it simply renders in strict mode, which is fine.</li> </ul> <p>Hope that helps, and gets you started using HTML5!</p> http://stackoverflow.com/questions/1646071/website-response-time-test-tool/1847927#1847927 0 Answer by Ryan Doherty for Website response time test tool Ryan Doherty 2009-12-04T16:04:03Z 2009-12-04T16:04:03Z <p><a href="http://www.webpagetest.org" rel="nofollow">WebPageTest</a> is a pretty awesome tool way more detailed than Gomez. Waterfall charts, repeat loads, and even videos of how a page loads. It has a few locations and connection speeds you can choose from. It seems to be down right now, but will probably be back up soon.</p> http://stackoverflow.com/questions/1821359/http-logging-in-ie8-developer-tools/1821409#1821409 0 Answer by Ryan Doherty for HTTP logging in IE8 developer tools? Ryan Doherty 2009-11-30T18:07:24Z 2009-11-30T18:07:24Z <p><a href="http://ajax.dynatrace.com/pages/" rel="nofollow">dynaTrace</a> is a free app for Internet Explorer that does HTTP logging. </p> http://stackoverflow.com/questions/1004478/read-pdf-files-with-php 1 Read pdf files with php Ryan Doherty 2009-06-16T23:56:46Z 2009-11-20T10:29:32Z <p>I have a large PDF file that is a floor map for a building. It has layers for all the office furniture including text boxes of seat location.</p> <p>My goal is to read this file with PHP, search the document for text layers, get their contents and coordinates in the file. This way I can map out seat locations -> x/y coordinates.</p> <p>Is there any way to do this via PHP? (Or even Ruby or Python if that's what's necessary)</p> http://stackoverflow.com/questions/1751501/php-tips-on-having-different-languages/1751529#1751529 4 Answer by Ryan Doherty for PHP: Tips on having different languages Ryan Doherty 2009-11-17T20:27:15Z 2009-11-17T20:27:15Z <p>Please research gettext for php <a href="http://php.net/manual/en/book.gettext.php" rel="nofollow">http://php.net/manual/en/book.gettext.php</a>, it is designed for exactly what you are doing and can handle all the various complexities of internationalization. (plurals, context, etc).</p> <p>The way gettext works is each locale has a plain text file with translations and in your PHP code you do this:</p> <pre><code>&lt;?php echo _("Welcome to my site");?&gt; </code></pre> <p>Gettext then pulls from the appropriate locale file. </p> <p>Internationalization is very complex and it's best to use a tried-and-true solution. We use gettext at Mozilla for most of our big websites and it is fast, well-known and full-featured.</p> http://stackoverflow.com/questions/279236/how-do-i-resize-pngs-with-transparency-in-php 2 How do I resize pngs with transparency in PHP? Ryan Doherty 2008-11-10T21:28:35Z 2009-10-31T20:44:02Z <p>I'm attempting to resize pngs with transparent backgrounds in PHP and the code samples I've found online don't work for me. Here's the code I'm using, advice will be much appreciated!</p> <pre><code>$this-&gt;image = imagecreatefrompng($filename); imagesavealpha($this-&gt;image, true); $newImage = imagecreatetruecolor($width, $height); // Make a new transparent image and turn off alpha blending to keep the alpha channel $background = imagecolorallocatealpha($newImage, 255, 255, 255, 127); imagecolortransparent($newImage, $background); imagealphablending($newImage, false); imagesavealpha($newImage, true); imagecopyresampled($newImage, $this-&gt;image, 0, 0, 0, 0, $width, $height, $this-&gt;getWidth(), $this-&gt;getHeight()); $this-&gt;image = $newImage; imagepng($this-&gt;image,$filename); </code></pre> <p><br /> <strong>Update</strong> By 'not working' I meant to say the background color changes to black when I resize pngs.</p> http://stackoverflow.com/questions/1635513/any-easy-way-with-css-maybe-to-highlight-a-section-of-a-web-page-based-on-the-t/1635521#1635521 3 Answer by Ryan Doherty for Any easy way (with CSS maybe) to highlight a section of a web page based on the the bookmark (site.com/page.htm#bookmark Ryan Doherty 2009-10-28T06:40:37Z 2009-10-28T06:40:37Z <p>You can do this with the :target selector:</p> <p><a href="http://www.w3.org/TR/css3-selectors/#target-pseudo" rel="nofollow">http://www.w3.org/TR/css3-selectors/#target-pseudo</a></p> <p>Example: <a href="http://www.mysite.com/#foo" rel="nofollow">http://www.mysite.com/#foo</a></p> <pre><code>&lt;div id="foo"&gt;Here is a message&lt;/div&gt; #foo:target { background: yellow; } </code></pre> <p>More info: <a href="http://carsonified.com/blog/features/css/stay-on-target/" rel="nofollow">http://carsonified.com/blog/features/css/stay-on-target/</a></p> <p>Unfortunately it does not work in IE6/7.</p> http://stackoverflow.com/questions/1631808/jquery-how-to-check-for-available-javascript-on-a-page/1631864#1631864 1 Answer by Ryan Doherty for jQuery - How to check for available javascript on a page? Ryan Doherty 2009-10-27T16:03:04Z 2009-10-27T16:03:04Z <p>The quickest way to test for this is to test for the existence of a function or variable that was declared in the JavaScript file you loaded.</p> <pre><code>if(typeof foo == "undefined") { //JS has loaded } else { //JS has not loaded } </code></pre> http://stackoverflow.com/questions/1628407/how-to-create-a-language-file-for-text-in-javascript-files/1628427#1628427 0 Answer by Ryan Doherty for how to create a language file for text in javascript files? Ryan Doherty 2009-10-27T02:16:51Z 2009-10-27T02:16:51Z <p>One way to do it is have a separate js include in your page that actually points to a server-side script. This script can then echo out the strings you need like this:</p> <pre><code>var STRINGS = {'greeting': "Hello", 'error': "Something went wrong"}; </code></pre> <p>And in your webpage have this: </p> <p>We do this for <a href="http://addons.mozilla.org" rel="nofollow">http://addons.mozilla.org</a> here: <a href="http://addons.mozilla.org/en-US/firefox/pages/js%5Fconstants.js" rel="nofollow">http://addons.mozilla.org/en-US/firefox/pages/js_constants.js</a></p> http://stackoverflow.com/questions/1619930/how-to-check-users-leave-a-page/1619936#1619936 0 Answer by Ryan Doherty for how to check users leave a page Ryan Doherty 2009-10-25T03:38:00Z 2009-10-25T03:38:00Z <p>You can't detect opening a new window or tab, but you can listen for the 'onunload' event.</p> <pre><code>jQuery(window).bind("unload", function() { //your code here }); </code></pre> <p>This should fire when clicking on a link, closing the tab/window or pressing the back button.</p> http://stackoverflow.com/questions/1619912/jquery-onclickfunc-or-click/1619918#1619918 5 Answer by Ryan Doherty for [JQuery] onclick="func()" or .click()? Ryan Doherty 2009-10-25T03:28:00Z 2009-10-25T03:28:00Z <pre><code>$(elem).click(function() { func(1,2,3,4); }); </code></pre> <p>That seems like what you want, no? </p> http://stackoverflow.com/questions/1611842/eval-json-out-of-memory-error/1611893#1611893 1 Answer by Ryan Doherty for eval json out of memory error Ryan Doherty 2009-10-23T07:37:05Z 2009-10-23T07:37:05Z <p>You are definitely pushing way too much information to your client. </p> <p>Possible workarounds:</p> <ul> <li>Page your data and only load what is visible</li> <li>Avoid JSON, use HTML and dump the HTML directly to the page with .innerHTML</li> <li>Maybe use a native JSON parser like in Firefox and IE8 (possibly in other browsers, can't remember)</li> <li>Try JSONP (including a script tag that calls a function with your data as an argument)</li> </ul> http://stackoverflow.com/questions/1581518/jquery-rewiring-dynamically-generated-elements/1581577#1581577 2 Answer by Ryan Doherty for Jquery - (re)wiring dynamically generated elements Ryan Doherty 2009-10-17T06:34:48Z 2009-10-17T17:58:04Z <p>I <em>think</em> you can use live();, but not how you have written it.</p> <p>Your current implementation:</p> <pre><code>$('.myfav').live("click", autocomplete("somefile.php", {max: 15, mustMatch: true})); </code></pre> <p>This will execute autocomplete <em>immediately</em>, not when jQuery finds a new element with class="myfav"</p> <p>You should use this syntax:</p> <pre><code>$('.myfav').live("click", function () { $('.myfav').autocomplete("somefile.php", {max: 15, mustMatch: true}) }); </code></pre> <p>You can use all the normal syntax, functions, etc inside the anonymous function.</p> <p>I think this will work, but I haven't tested it. What it does is send jQuery a function to execute later when the click event fires.</p> http://stackoverflow.com/questions/1570365/php-htmlspecialchars/1570393#1570393 0 Answer by Ryan Doherty for php htmlspecialchars Ryan Doherty 2009-10-15T05:11:36Z 2009-10-15T05:11:36Z <p>htmlspecialchars should be used on <em>any</em> data a user enters that is ever displayed back to any of your users. If you don't use it for even 1 piece of information, you've opened yourself up to a <a href="http://en.wikipedia.org/wiki/Cross-site%5Fscripting" rel="nofollow">Cross Site Scripting</a> attack.</p> <p>You wouldn't use it when adding information to a database or saving it somewhere, then you'd want to properly escape it for your database. This will avoid a <a href="http://en.wikipedia.org/wiki/SQL%5Finjection" rel="nofollow">SQL injection</a> vulnerability.</p> http://stackoverflow.com/questions/775988/what-web-apis-would-you-most-want-to-replicate-or-are-the-most-popular/1570359#1570359 0 Answer by Ryan Doherty for What web APIs would you most want to replicate or are the most popular? Ryan Doherty 2009-10-15T05:01:58Z 2009-10-15T05:01:58Z <p>Flickr's API is pretty good: <a href="http://www.flickr.com/services/api/" rel="nofollow">http://www.flickr.com/services/api/</a></p> <p>Spent a few months working with it and found it pretty usable. The docs are great too, which many have made it seem that much easier.</p> <p>REST, JSON/XML/PHP/SOAP protocols, every endpoint is namespaced, lots of options/parameters for every request. Error messages and codes are documented too.</p> <p>Most of all it lets you access just about all information Flickr stores about its photos and users (with appropriate permissions, of course). Gotta love good APIs!</p> http://stackoverflow.com/questions/1542031/time-out-ajax-requests-with-jquery/1542085#1542085 1 Answer by Ryan Doherty for Time out Ajax requests with jquery? Ryan Doherty 2009-10-09T06:22:15Z 2009-10-09T06:22:15Z <p>Yep, jQuery has a 'timeout' property (in milliseconds) you send the $.ajax() event: </p> <p><a href="http://www.bennadel.com/blog/1500-Catching-Timeout-Errors-With-jQuery-Powered-AJAX.htm" rel="nofollow">http://www.bennadel.com/blog/1500-Catching-Timeout-Errors-With-jQuery-Powered-AJAX.htm</a></p> <pre><code>$.ajax( { method: "get", url: "yourpage.php", dataType: "json", timeout: (3 * 1000), // 3 seconds success: function(){ //success code here }, error: function( request, strError ){ //error code here } } ); </code></pre> http://stackoverflow.com/questions/1526756/css-declaration-effeciency/1526770#1526770 0 Answer by Ryan Doherty for css declaration effeciency Ryan Doherty 2009-10-06T16:46:50Z 2009-10-06T16:46:50Z <p>It can, but only if you have thousands of selectors. Read this article for more info: <a href="http://www.stevesouders.com/blog/2009/03/10/performance-impact-of-css-selectors/" rel="nofollow">http://www.stevesouders.com/blog/2009/03/10/performance-impact-of-css-selectors/</a></p> http://stackoverflow.com/questions/1523741/reloading-javascript-and-css-best-practices-php/1523770#1523770 1 Answer by Ryan Doherty for Reloading javascript and CSS, best practices: PHP Ryan Doherty 2009-10-06T05:38:27Z 2009-10-06T05:38:27Z <p>For development you can add a random number to the end of the URL of your CSS &amp; JS files. Something like:</p> <pre><code>&lt;script type="text/javascript" src="/myscript.js?&lt;?php echo rand(1, 200000);?&gt;"&gt;&lt;/script&gt; </code></pre> <p>Or</p> <pre><code>&lt;link rel="stylesheet" href="/styles.css?&lt;?php echo rand(1, 200000);?&gt;"&gt; </code></pre> <p>Just don't do this on your live site, otherwise your users will download the files again on every request, making your site slower.</p> http://stackoverflow.com/questions/1503810/what-javascript-table-widgets-are-available/1522147#1522147 6 Answer by Ryan Doherty for What JavaScript table widgets are available? Ryan Doherty 2009-10-05T20:15:05Z 2009-10-05T20:15:05Z <p>YUI DataTable is pretty powerful <a href="http://developer.yahoo.com/yui/datatable/" rel="nofollow">http://developer.yahoo.com/yui/datatable/</a></p> <p>Features:</p> <ul> <li>Progressive Enhancement</li> <li>Custom Cell Formatting</li> <li>Conditional row coloring</li> <li>Nested Headers</li> <li>JSON Data Over XHR</li> <li>XML Data Over XHR With POST</li> <li>XML Data with XPath</li> <li>Textual Data Over XHR</li> <li>Polling the DataSource</li> <li>Adding, Updating, and Deleting Rows</li> <li>Client-side Pagination</li> <li>Client-side Sorting</li> <li>Server-side Pagination and Sorting for Dynamic Data</li> <li>Integrating Browser History Manager with Server-side Pagination and Sorting</li> <li>XY-scrolling, Y-scrolling, and X-scrolling</li> <li>Row Selection</li> <li>Cell Selection</li> <li>Inline Cell Editing</li> <li>Showing, Hiding, and Reordering Columns.</li> <li>Highlighting Cells, Rows, or Columns</li> <li>Reorder Rows with Drag and Drop</li> <li>Row Expansion</li> <li>Context Menu Integration</li> <li>TabView Integration</li> <li>Complex Example of Multiple Features</li> <li>Client-side Filtering of Local Data</li> <li>Filtering of Dynamic Data</li> <li>Datatable with Autocomplete</li> <li>Skinning Model</li> </ul> http://stackoverflow.com/questions/1513046/dangers-that-threaten-a-project-near-completion/1513192#1513192 1 Answer by Ryan Doherty for Dangers that threaten a project near completion Ryan Doherty 2009-10-03T08:32:08Z 2009-10-03T08:32:08Z <p><strong>Integration Issues</strong></p> <p>When a large project is nearing completion many large and small pieces start coming together (or are deliberately avoided). Make sure to test end-to-end all of the pieces and systems that are involved. </p> http://stackoverflow.com/questions/1464008/whats-quicker-serving-a-static-html-file-from-the-filesystem-or-from-memcache/1464025#1464025 0 Answer by Ryan Doherty for What's quicker: serving a static HTML file from the filesystem or from MemCache? Ryan Doherty 2009-09-23T04:52:03Z 2009-09-23T04:52:03Z <p>Like any performance-related issue: benchmark. It's highly dependent on architecture, server setup, network, disk, etc. This question sounds simple enough to benchmark in a few mins with a load testing tool.</p> http://stackoverflow.com/questions/1430854/jquery-wait-for-page-to-finish-loading-before-starting-the-slideshow/1430868#1430868 0 Answer by Ryan Doherty for JQuery wait for page to finish loading before starting the slideshow? Ryan Doherty 2009-09-16T04:01:12Z 2009-09-16T04:01:12Z <p>If you pass jQuery a function, it will not run until the page has loaded:</p> <pre><code>&lt;script type="text/javascript"&gt; $(function() { //your header rotation code goes here }); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/32516/getting-started-with-ruby-development/32532#32532 8 Answer by Ryan Doherty for Getting Started with Ruby Development Ryan Doherty 2008-08-28T15:12:10Z 2009-08-24T12:13:23Z <p>Ruby is one of my favorite languages, here's a few places to start.</p> <p><a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's Poignant Guide To Ruby</a> is pretty hilarious and educational.</p> <p><a href="http://www.ruby-lang.org/en/documentation/" rel="nofollow">Ruby Documentation</a> has lots of links.</p> <p><a href="http://www.ruby-doc.org/docs/ProgrammingRuby/" rel="nofollow">Programming Ruby</a> is a free, online version of one of the best Ruby books out there.</p> http://stackoverflow.com/questions/791709/unable-to-make-a-so-floating-effect-for-browsing-messages-in-jquery/791713#791713 2 Answer by Ryan Doherty for Unable to make a SO floating effect for browsing messages in jQuery Ryan Doherty 2009-04-26T22:18:01Z 2009-04-26T22:18:01Z <p>This looks like tabs but with some CSS to make it look different. <a href="http://jqueryui.com/demos/tabs/" rel="nofollow">http://jqueryui.com/demos/tabs/</a></p> http://stackoverflow.com/questions/712689/css-div-stretch-100-page-height/712711#712711 2 Answer by Ryan Doherty for CSS Div stretch 100% page height Ryan Doherty 2009-04-03T06:06:23Z 2009-04-03T06:06:23Z <p>You can cheat using <a href="http://www.alistapart.com/articles/fauxcolumns/" rel="nofollow">Faux Columns</a> Or you can use some <a href="http://www.ejeliot.com/samples/equal-height-columns/example-7.html" rel="nofollow">CSS trickery</a></p> http://stackoverflow.com/questions/630514/what-is-your-favorite-php-framework/630597#630597 8 Answer by Ryan Doherty for What is your favorite PHP framework? Ryan Doherty 2009-03-10T14:51:05Z 2009-03-10T14:51:05Z <p><a href="http://kohanaphp.com/" rel="nofollow">Kohana</a></p> http://stackoverflow.com/questions/600438/css-to-hide-input-button-value-text/600466#600466 2 Answer by Ryan Doherty for CSS to hide INPUT BUTTON value text Ryan Doherty 2009-03-01T20:39:46Z 2009-03-01T20:39:46Z <p>Have you tried setting the text-indent property to something like -999em? That's a good way to 'hide' text. </p> <p>Or you can set the font-size to 0, which would work too.</p> <p><a href="http://www.productivedreams.com/ie-not-intepreting-text-indent-on-submit-buttons/" rel="nofollow">http://www.productivedreams.com/ie-not-intepreting-text-indent-on-submit-buttons/</a></p> http://stackoverflow.com/questions/497276/how-can-i-consume-firebug-net-panel-data-programmatically/544511#544511 1 Answer by Ryan Doherty for How can I consume Firebug net panel data programmatically? Ryan Doherty 2009-02-13T02:27:11Z 2009-02-13T02:27:11Z <p>There is a way to use ySlow to beacon out performance data to a URL of your choice. It's not well documented, the only info I found was here:</p> <p><a href="http://tech.groups.yahoo.com/group/exceptional-performance/messages/490?threaded=1&amp;m=e&amp;var=1&amp;tidx=1" rel="nofollow">http://tech.groups.yahoo.com/group/exceptional-performance/messages/490?threaded=1&amp;m=e&amp;var=1&amp;tidx=1</a></p> <p>Aside from that I would look into writing a Firebug plugin, I think you can access most Firebug properties. Here's a tutorial: <a href="http://www.firephp.org/Reference/Developers/ExtendingFirebug.htm" rel="nofollow">http://www.firephp.org/Reference/Developers/ExtendingFirebug.htm</a></p> http://stackoverflow.com/questions/1895476/how-to-style-select-dropdown-with-css-only-without-javascript/1895479#1895479 Comment by Ryan Doherty on How to style <select> dropdown with css only without javascript? Ryan Doherty 2009-12-13T03:39:15Z 2009-12-13T03:39:15Z You can't style the dropdown arrow to another image, it's controlled by the OS. If you really need to, your best bet is to use a DHTML dropdown widget. http://stackoverflow.com/questions/1188770/is-it-time-to-start-developing-with-html5/1188811#1188811 Comment by Ryan Doherty on Is it time to start developing with HTML5? Ryan Doherty 2009-12-07T03:08:50Z 2009-12-07T03:08:50Z HTML5 browsers are widespread. Firefox, Safari &amp; Chrome make up &gt; 30% of the market. They support new elements (header, footer, article), video and audio tags and numerous other features. There are even ways to degrade gracefully for IE (<a href="http://ejohn.org/blog/html5-shiv/" rel="nofollow">ejohn.org/blog/html5-shiv</a>). http://stackoverflow.com/questions/279236/how-do-i-resize-pngs-with-transparency-in-php/279310#279310 Comment by Ryan Doherty on How do I resize pngs with transparency in PHP? Ryan Doherty 2009-11-30T16:28:57Z 2009-11-30T16:28:57Z The answer was something completely unrelated, but this is the correct way to resize with transparency. http://stackoverflow.com/questions/1813085/is-it-redundant-to-use-the-name-attribute-for-input-fields-in-modern-web-develo Comment by Ryan Doherty on Is it redundant to use the "name" attribute for input fields in modern web development? Ryan Doherty 2009-11-28T18:47:25Z 2009-11-28T18:47:25Z Your citation is for the FORM element, not input elements. You'll still need to give input elements a name in order for your server-side code to correctly read the submitted information. http://stackoverflow.com/questions/1751501/php-tips-on-having-different-languages/1751529#1751529 Comment by Ryan Doherty on PHP: Tips on having different languages Ryan Doherty 2009-11-18T05:30:26Z 2009-11-18T05:30:26Z The way we deal with it is to first put the strings in our php files like I previously demonstrated, then pull the strings out using xgettext into another po file. Then you can merge that one into the en-us (english) file. http://stackoverflow.com/questions/1686337/hyphens-or-underscores-in-css-and-html-identifiers/1686349#1686349 Comment by Ryan Doherty on Hyphens or underscores in CSS and HTML identifiers? Ryan Doherty 2009-11-06T16:43:51Z 2009-11-06T16:43:51Z @Robert: really? Why? I've never heard of anyone stating that, and I like to think I stay up on standards and best practices. http://stackoverflow.com/questions/1665093/core-html-css-javascript-frameworks/1665096#1665096 Comment by Ryan Doherty on Core HTML/CSS/Javascript Frameworks Ryan Doherty 2009-11-03T03:50:27Z 2009-11-03T03:50:27Z +1 for jQuery. Small, fast and quite expressive. I've used YUI and Prototype, can't beat jQuery for it's overall speed and size. http://stackoverflow.com/questions/1650299/how-do-i-change-html-element-id-client-side-with-javascript Comment by Ryan Doherty on How do i change html element id client side with JavaScript? Ryan Doherty 2009-10-30T14:58:17Z 2009-10-30T14:58:17Z This works for me in Firefox, are you getting a JavaScript error? Can you post more code examples? http://stackoverflow.com/questions/1635513/any-easy-way-with-css-maybe-to-highlight-a-section-of-a-web-page-based-on-the-t/1635521#1635521 Comment by Ryan Doherty on Any easy way (with CSS maybe) to highlight a section of a web page based on the the bookmark (site.com/page.htm#bookmark Ryan Doherty 2009-10-28T07:13:45Z 2009-10-28T07:13:45Z If you need support in all browsers, you'll have to use some JS to grab hash (document.location.hash), then find the element in the DOM with that ID and add a 'highlight' classname to it. Then you can style appropriately. http://stackoverflow.com/questions/1623163/is-negative-margin-or-padding-invalid-css-according-to-w3c/1623167#1623167 Comment by Ryan Doherty on is -negative margin or padding invalid CSS according to W3C ? Ryan Doherty 2009-10-26T05:07:26Z 2009-10-26T05:07:26Z And very useful! http://stackoverflow.com/questions/1619912/jquery-onclickfunc-or-click/1619918#1619918 Comment by Ryan Doherty on [JQuery] onclick="func()" or .click()? Ryan Doherty 2009-10-25T05:49:40Z 2009-10-25T05:49:40Z Technically it is faster to do onclick=&quot;foo()&quot;, this is more performant. But you shouldn't do that unless you are seeing horrible performance issues and have tried everything else. I like Ben's idea of event delegation + a JS array of information. Seems like a good idea. http://stackoverflow.com/questions/1586549/when-to-start-performance-tuning-a-website/1586554#1586554 Comment by Ryan Doherty on when to start performance tuning a website Ryan Doherty 2009-10-19T02:07:52Z 2009-10-19T02:07:52Z If people in Asia are seeing performance issues, it's probably due to latency. http://stackoverflow.com/questions/1581518/jquery-rewiring-dynamically-generated-elements/1581577#1581577 Comment by Ryan Doherty on Jquery - (re)wiring dynamically generated elements Ryan Doherty 2009-10-17T17:58:36Z 2009-10-17T17:58:36Z I changed it to $('.myfav').autocomplete(&quot;somefile.php&quot;, {max: 15, mustMatch: true}) inside the anonymous function, I think that was the problem. http://stackoverflow.com/questions/1523741/reloading-javascript-and-css-best-practices-php/1523770#1523770 Comment by Ryan Doherty on Reloading javascript and CSS, best practices: PHP Ryan Doherty 2009-10-06T15:31:01Z 2009-10-06T15:31:01Z I can't think of any other advantages. You can add a check to see if the server is production or not and add the random number or not. Then you don't have to worry about it :) http://stackoverflow.com/questions/1518223/table-vs-css-based-layouts-for-web-pages Comment by Ryan Doherty on Table vs CSS-based layouts for web pages Ryan Doherty 2009-10-05T04:37:49Z 2009-10-05T04:37:49Z I'm pretty sure there are lots of other questions like this on SO and the Internet. Google it :)