Ryan Doherty

3,257
reputation
276 views

Registered User

name Ryan Doherty
member for 1 year
seen 2 days ago
website
location Silicon Valley
age 26
Web developer for Mozilla.
Dec
13
comment How to style <select> dropdown with css only without javascript?
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.
Dec
11
answered Javascript library for drawing Graphs over Timelines (zoomable and selectable)
Dec
9
revised Is it time to start developing with HTML5?
added html tag
Dec
7
revised How to set background color for a Flex actionscript 3 project
fixed title
Dec
7
answered HTML Canvas element implemented in Flash?
Dec
7
answered Is it time to start developing with HTML5?
Dec
7
comment Is it time to start developing with HTML5?
HTML5 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 (ejohn.org/blog/html5-shiv).
Dec
5
accepted Website response time test tool
Dec
4
answered Website response time test tool
Nov
30
answered HTTP logging in IE8 developer tools?
Nov
30
revised HTTP logging in IE8 developer tools?
Improved title
Nov
30
comment How do I resize pngs with transparency in PHP?
The answer was something completely unrelated, but this is the correct way to resize with transparency.
Nov
28
comment Is it redundant to use the “name” attribute for input fields in modern web development?
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.
Nov
18
comment PHP: Tips on having different languages
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.
Nov
17
accepted PHP: Tips on having different languages
Nov
17
answered PHP: Tips on having different languages
Nov
13
awarded  Nice Answer
Nov
6
comment Hyphens or underscores in CSS and HTML identifiers?
@Robert: really? Why? I've never heard of anyone stating that, and I like to think I stay up on standards and best practices.
Nov
3
comment Core HTML/CSS/Javascript Frameworks
+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.
Oct
30
accepted Any easy way (with CSS maybe) to highlight a section of a web page based on the the bookmark (site.com/page.htm#bookmark
Oct
30
comment How do i change html element id client side with JavaScript?
This works for me in Firefox, are you getting a JavaScript error? Can you post more code examples?
Oct
28
comment Any easy way (with CSS maybe) to highlight a section of a web page based on the the bookmark (site.com/page.htm#bookmark
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.
Oct
28
answered Any easy way (with CSS maybe) to highlight a section of a web page based on the the bookmark (site.com/page.htm#bookmark
Oct
27
answered jQuery - How to check for available javascript on a page?
Oct
27
answered how to create a language file for text in javascript files?
Oct
26
comment is -negative margin or padding invalid CSS according to W3C ?
And very useful!
Oct
25
comment [JQuery] onclick=”func()” or .click()?
Technically 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.
Oct
25
answered how to check users leave a page
Oct
25
answered [JQuery] onclick=”func()” or .click()?
Oct
23
answered eval json out of memory error
Oct
21
awarded  
Oct
19
comment when to start performance tuning a website
If people in Asia are seeing performance issues, it's probably due to latency.
Oct
17
comment Jquery - (re)wiring dynamically generated elements
I changed it to $('.myfav').autocomplete("somefile.php", {max: 15, mustMatch: true}) inside the anonymous function, I think that was the problem.
Oct
17
revised Jquery - (re)wiring dynamically generated elements
fixed typo
Oct
17
answered Jquery - (re)wiring dynamically generated elements
Oct
15
accepted php htmlspecialchars
Oct
15
answered php htmlspecialchars
Oct
15
answered What web APIs would you most want to replicate or are the most popular?
Oct
9
answered Time out Ajax requests with jquery?
Oct
6
answered css declaration effeciency
Oct
6
comment Reloading javascript and CSS, best practices: PHP
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 :)
Oct
6
answered Reloading javascript and CSS, best practices: PHP
Oct
5
answered What JavaScript table widgets are available?
Oct
5
comment Table vs CSS-based layouts for web pages
I'm pretty sure there are lots of other questions like this on SO and the Internet. Google it :)
Oct
3
answered Dangers that threaten a project near completion
Oct
2
revised How does AJAX work?
edited tags
Sep
28
accepted What are the best strategies for using multiple AJAX libraries?
Sep
23
answered What’s quicker: serving a static HTML file from the filesystem or from MemCache?
Sep
16
comment JQuery wait for page to finish loading before starting the slideshow?
If you really need to wait for the page to finish loading, you could do: $(window).load(function() {//your code });
Sep
16
answered JQuery wait for page to finish loading before starting the slideshow?