morgancodes

1,326
reputation
245 views

Registered User

name morgancodes
member for 1 year
seen 2 days ago
website
location
age
2d
awarded  Popular Question
Dec
15
answered Add variable to jQuery src attribute
Dec
14
comment Image preloading isn’t working for images in FireFox.
Thanks Neal, you're totally right. Looks like a FireFox bug to me.
Dec
14
comment Image preloading isn’t working for images in FireFox.
Thanks guys, yeah, everything you've suggested checks out. I added a comment to my original question outlining an additional strangeness -- that my images are read correctly from the cache AFTER I reload.
Dec
14
comment how to convert the webpage to xml document using java?
Isn't HTML a subset of XML? I think you need to give us some more information about what you're trying to do.
Dec
12
revised Image preloading isn’t working for images in FireFox.
added 387 characters in body; edited title
Dec
12
comment Image preloading isn’t working for images in FireFox.
I've turned FireBug off, and the images are still loading slowly. Works as expected in Safari, but not firefox.
Dec
12
comment Image preloading isn’t working for images in FireFox.
Hmmm. But the classic JS preload just creates JS image objects, without adding them to the DOM. Just to make sure, I tried literally appending my images to the dom, making them visible. So I see ImageA on the screen, obviously loaded in the DOM, but when I set the background to ImageA, there's a pause while it downloads again.
Dec
12
asked Image preloading isn’t working for images in FireFox.
Dec
12
answered JSON, JS to Java and Vice Versa, and other languages.
Dec
10
awarded  Yearling
Dec
9
awarded  Popular Question
Nov
16
awarded  Popular Question
Nov
16
awarded  Popular Question
Sep
21
revised How can I use FireBug to tell what’s causing slow page loads?
added 354 characters in body
Sep
19
asked Get Daylight Saving Transition Dates For Time Zones in Java
Sep
19
comment Get Daylight Saving Transition Dates For Time Zones in C
I have precisely the same question about Java
Sep
14
comment How can I use FireBug to tell what’s causing slow page loads?
YSlow is great, but it looks like it can't be run until the page is finished loading. My problem is that my page is hanging, and I want to see what's holding it up.
Sep
10
asked How can I use FireBug to tell what’s causing slow page loads?
Aug
21
comment javascript preprocessing for easier multi-line strings?
Sure, but I'm moving toward developing all of my javascript using separate files, but using a build process and deploying everything as one file. So I'd like to have my templates in separate source files, but have my build process turn them in to javascript which can be rolled in to the single js file which contains everything needed for the widget I'm developing.
Aug
19
comment jquery selector strangeness — is this a bug or am I doing it wrong?
Just found a similiar aparrent jquery selectors bug. dev.jquery.com/ticket/5078
Aug
18
asked javascript preprocessing for easier multi-line strings?
Aug
18
awarded  Popular Question
Jul
17
comment How to load a .properties file into a jsp
Thanks. This works. However, I was planning on doing all of this inside jspInit, which doesn't have easy access to the servletContext. Maybe a classpath approach really is best.
Jul
16
comment How to load a .properties file into a jsp
I'm totally on board with the not doing real stuff in a jsp rule, but I'm breaking it in the case.
Jul
16
comment How to load a .properties file into a jsp
Yes, that would be the right way to do it. I'm admittedly doing this the quick, ugly, dirty, bad way.
Jul
16
comment How to load a .properties file into a jsp
That's great to know about. Thanks! Using that technique, it shows me that my path is seemingly correct to my properties file, but I still get a file not foud exception. Any ideas?
Jul
16
asked How to load a .properties file into a jsp
Jul
14
comment jquery Event.stopPropagation() seems not to work
Awesome. Thanks so much for the clarificatin.
Jul
13
asked jquery Event.stopPropagation() seems not to work
Jul
13
comment jquery - fastest way to remove all rows from a very large table
Cool! Thanks for reporting back!
Jul
1
asked sprites vs image slicing
Jun
30
asked How can I tell if “abort()” has been called on an XMLHTTPRequest
Jun
26
revised Javascript — Unix Time to Specific Time Zone
deleted 92 characters in body
Jun
26
answered Javascript — Unix Time to Specific Time Zone
Jun
25
comment Javascript — Unix Time to Specific Time Zone
and no daylight savings handling
Jun
25
comment Javascript — Unix Time to Specific Time Zone
I appreciate the responses, and totally believe that Mark's solution is best if the user is in the correct time zone. However, if the user isn't, I still want to be able show the time in Eastern Standard time, rather than whatever time zone the user is in. Seems it may be a bit ugly to do that though.
Jun
25
comment Javascript — Unix Time to Specific Time Zone
I was figuring I could bet back to GMT by subtracting the timeZoneOffset, then manually subtracting four hours, and manually correcting for daylight savings. A little ugly, but seems to me that would work no matter what time zone the browser thinks it's in.
Jun
25
comment Javascript — Unix Time to Specific Time Zone
Thanks for the response, but whatever my solution is, it's going to need to subtract four hours from the unix time, and is going to then need to handle daylight savings. Don't think what you posted will do that.
Jun
25
asked Javascript — Unix Time to Specific Time Zone