User Ryan Doherty - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T02:48:46Zhttp://stackoverflow.com/feeds/user/956http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1890434/javascript-library-for-drawing-graphs-over-timelines-zoomable-and-selectable/1890510#18905100Answer by Ryan Doherty for Javascript library for drawing Graphs over Timelines (zoomable and selectable)Ryan Doherty2009-12-11T20:02:12Z2009-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#18576450Answer by Ryan Doherty for HTML Canvas element implemented in Flash?Ryan Doherty2009-12-07T03:25:57Z2009-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#18576281Answer by Ryan Doherty for Is it time to start developing with HTML5?Ryan Doherty2009-12-07T03:20:14Z2009-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 & video tag</li>
<li>New tags (footer, header, section, etc)</li>
<li>Canvas</li>
<li>HTML5 doctype (<!DOCTYPE html>)</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#18479270Answer by Ryan Doherty for Website response time test toolRyan Doherty2009-12-04T16:04:03Z2009-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#18214090Answer by Ryan Doherty for HTTP logging in IE8 developer tools?Ryan Doherty2009-11-30T18:07:24Z2009-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-php1Read pdf files with phpRyan Doherty2009-06-16T23:56:46Z2009-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#17515294Answer by Ryan Doherty for PHP: Tips on having different languagesRyan Doherty2009-11-17T20:27:15Z2009-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><?php echo _("Welcome to my site");?>
</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-php2How do I resize pngs with transparency in PHP?Ryan Doherty2008-11-10T21:28:35Z2009-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->image = imagecreatefrompng($filename);
imagesavealpha($this->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->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
$this->image = $newImage;
imagepng($this->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#16355213Answer 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#bookmarkRyan Doherty2009-10-28T06:40:37Z2009-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><div id="foo">Here is a message</div>
#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#16318641Answer by Ryan Doherty for jQuery - How to check for available javascript on a page?Ryan Doherty2009-10-27T16:03:04Z2009-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#16284270Answer by Ryan Doherty for how to create a language file for text in javascript files?Ryan Doherty2009-10-27T02:16:51Z2009-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#16199360Answer by Ryan Doherty for how to check users leave a pageRyan Doherty2009-10-25T03:38:00Z2009-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#16199185Answer by Ryan Doherty for [JQuery] onclick="func()" or .click()?Ryan Doherty2009-10-25T03:28:00Z2009-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#16118931Answer by Ryan Doherty for eval json out of memory errorRyan Doherty2009-10-23T07:37:05Z2009-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#15815772Answer by Ryan Doherty for Jquery - (re)wiring dynamically generated elementsRyan Doherty2009-10-17T06:34:48Z2009-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#15703930Answer by Ryan Doherty for php htmlspecialcharsRyan Doherty2009-10-15T05:11:36Z2009-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#15703590Answer by Ryan Doherty for What web APIs would you most want to replicate or are the most popular?Ryan Doherty2009-10-15T05:01:58Z2009-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#15420851Answer by Ryan Doherty for Time out Ajax requests with jquery?Ryan Doherty2009-10-09T06:22:15Z2009-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#15267700Answer by Ryan Doherty for css declaration effeciencyRyan Doherty2009-10-06T16:46:50Z2009-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#15237701Answer by Ryan Doherty for Reloading javascript and CSS, best practices: PHPRyan Doherty2009-10-06T05:38:27Z2009-10-06T05:38:27Z<p>For development you can add a random number to the end of the URL of your CSS & JS files. Something like:</p>
<pre><code><script type="text/javascript" src="/myscript.js?<?php echo rand(1, 200000);?>"></script>
</code></pre>
<p>Or</p>
<pre><code><link rel="stylesheet" href="/styles.css?<?php echo rand(1, 200000);?>">
</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#15221476Answer by Ryan Doherty for What JavaScript table widgets are available?Ryan Doherty2009-10-05T20:15:05Z2009-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#15131921Answer by Ryan Doherty for Dangers that threaten a project near completionRyan Doherty2009-10-03T08:32:08Z2009-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#14640250Answer by Ryan Doherty for What's quicker: serving a static HTML file from the filesystem or from MemCache?Ryan Doherty2009-09-23T04:52:03Z2009-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#14308680Answer by Ryan Doherty for JQuery wait for page to finish loading before starting the slideshow?Ryan Doherty2009-09-16T04:01:12Z2009-09-16T04:01:12Z<p>If you pass jQuery a function, it will not run until the page has loaded:</p>
<pre><code><script type="text/javascript">
$(function() {
//your header rotation code goes here
});
</script>
</code></pre>
http://stackoverflow.com/questions/32516/getting-started-with-ruby-development/32532#325328Answer by Ryan Doherty for Getting Started with Ruby DevelopmentRyan Doherty2008-08-28T15:12:10Z2009-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#7917132Answer by Ryan Doherty for Unable to make a SO floating effect for browsing messages in jQuery Ryan Doherty2009-04-26T22:18:01Z2009-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#7127112Answer by Ryan Doherty for CSS Div stretch 100% page heightRyan Doherty2009-04-03T06:06:23Z2009-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#6305978Answer by Ryan Doherty for What is your favorite PHP framework?Ryan Doherty2009-03-10T14:51:05Z2009-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#6004662Answer by Ryan Doherty for CSS to hide INPUT BUTTON value textRyan Doherty2009-03-01T20:39:46Z2009-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#5445111Answer by Ryan Doherty for How can I consume Firebug net panel data programmatically?Ryan Doherty2009-02-13T02:27:11Z2009-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&m=e&var=1&tidx=1" rel="nofollow">http://tech.groups.yahoo.com/group/exceptional-performance/messages/490?threaded=1&m=e&var=1&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#1895479Comment by Ryan Doherty on How to style <select> dropdown with css only without javascript?Ryan Doherty2009-12-13T03:39:15Z2009-12-13T03:39:15ZYou 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#1188811Comment by Ryan Doherty on Is it time to start developing with HTML5?Ryan Doherty2009-12-07T03:08:50Z2009-12-07T03:08:50ZHTML5 browsers are widespread. Firefox, Safari & Chrome make up > 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#279310Comment by Ryan Doherty on How do I resize pngs with transparency in PHP?Ryan Doherty2009-11-30T16:28:57Z2009-11-30T16:28:57ZThe 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-develoComment by Ryan Doherty on Is it redundant to use the "name" attribute for input fields in modern web development? Ryan Doherty2009-11-28T18:47:25Z2009-11-28T18:47:25ZYour 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#1751529Comment by Ryan Doherty on PHP: Tips on having different languagesRyan Doherty2009-11-18T05:30:26Z2009-11-18T05:30:26ZThe 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#1686349Comment by Ryan Doherty on Hyphens or underscores in CSS and HTML identifiers?Ryan Doherty2009-11-06T16:43:51Z2009-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#1665096Comment by Ryan Doherty on Core HTML/CSS/Javascript FrameworksRyan Doherty2009-11-03T03:50:27Z2009-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-javascriptComment by Ryan Doherty on How do i change html element id client side with JavaScript?Ryan Doherty2009-10-30T14:58:17Z2009-10-30T14:58:17ZThis 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#1635521Comment 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#bookmarkRyan Doherty2009-10-28T07:13:45Z2009-10-28T07:13:45ZIf 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#1623167Comment by Ryan Doherty on is -negative margin or padding invalid CSS according to W3C ?Ryan Doherty2009-10-26T05:07:26Z2009-10-26T05:07:26ZAnd very useful!http://stackoverflow.com/questions/1619912/jquery-onclickfunc-or-click/1619918#1619918Comment by Ryan Doherty on [JQuery] onclick="func()" or .click()?Ryan Doherty2009-10-25T05:49:40Z2009-10-25T05:49:40ZTechnically it is faster to do onclick="foo()", 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#1586554Comment by Ryan Doherty on when to start performance tuning a websiteRyan Doherty2009-10-19T02:07:52Z2009-10-19T02:07:52ZIf people in Asia are seeing performance issues, it's probably due to latency.http://stackoverflow.com/questions/1581518/jquery-rewiring-dynamically-generated-elements/1581577#1581577Comment by Ryan Doherty on Jquery - (re)wiring dynamically generated elementsRyan Doherty2009-10-17T17:58:36Z2009-10-17T17:58:36ZI changed it to $('.myfav').autocomplete("somefile.php", {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#1523770Comment by Ryan Doherty on Reloading javascript and CSS, best practices: PHPRyan Doherty2009-10-06T15:31:01Z2009-10-06T15:31:01ZI 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-pagesComment by Ryan Doherty on Table vs CSS-based layouts for web pagesRyan Doherty2009-10-05T04:37:49Z2009-10-05T04:37:49ZI'm pretty sure there are lots of other questions like this on SO and the Internet. Google it :)