scunliffe

8,075
Reputation
439 views

Registered User

Name scunliffe
Member for 1 year
Seen 9 hours ago
Website
Location Toronto
Age 36
Software Developer. Mainly Web Applications. Also an avid CAD user/developer
2d
comment Why does .html work and not innerHTML or appendChild
Setting the .innerText won't work if the content truly is HTML. @AntonioCS is already using jQuery thus has solved the issue - he's just not sure exactly why IE is failing.
2d
revised Why does .html work and not innerHTML or appendChild
note about known error throwing added
2d
answered Why does .html work and not innerHTML or appendChild
2d
comment How to move scrollbars automatically
there's also a vanilla JS scrollTo method.
2d
awarded  Popular Question
2d
comment nice effect / widget
Are you using any JS frameworks at the moment? e.g. jQuery, mootools, etc. If so, please specify as it would help us provide the most useful solution.
2d
revised nice effect / widget
added descriptive explanation vs links to site
2d
comment Is JIRA ever going to implement subsubtasks?
Would be a nice feature. ;-) Having only 1 level of hierarchy isn't really a stellar implementation of hierarchy for issues.
Dec
2
comment Is there a YSlow-like tool for IE7?
Thanks Marin! - that is almost exactly what I was looking for!
Dec
1
revised Another Javascript Undefined Null Question
typo tweak
Nov
29
comment Why doesn’t this JavaScript run in Firefox?
You don't need the "javascript:" protocol prefix in your onload attribute. The content of the on* attributes expect a script value.
Nov
28
comment php validate user is over 18
I hope this isn't for something of top security! ;-) I'm sure that all kids trying to access Adult content will enter their correct age.
Nov
28
comment What is the rate of firefox 2.0 and 3.0 adoption?
True, there are minor differences but in general since both Chrome and Safari are both built on WebKit they tend to have the same behavior. Any insight on what the "subtle" differences are that one should be aware of between Safari and Chrome?
Nov
25
accepted Is it possible to create a TH with TableRow.insertCell()?
Nov
25
revised Count calls to eval
added 250 characters in body
Nov
25
answered Count calls to eval
Nov
25
revised Count calls to eval
fixed indentation
Nov
24
answered Is it possible to create a TH with TableRow.insertCell()?
Nov
24
revised [PHP] Whitespace in email issue
formatted lines to ensure spacing displays
Nov
23
comment Call href from JavaScript
Ah, nicely noted... this used to work (and still does in IE)
Nov
23
answered Call href from JavaScript
Nov
23
awarded  Great Answer
Nov
21
comment CSS Grid System for Forms (Multi-Column)
Are you trying to re-invent the table? if so, there's an element for that ;-) There are times when a table is the right choice for the job.
Nov
21
comment IM (Instant Messaging) increase or decrease developer’s productivity?
+1 for IRC. If you have a channel open that all can view you can still direct message someone if needed but better yet you can post to the entire group.
Nov
20
answered How to find a function by function name
Nov
18
revised How to send 1000+ emails per day using an ASP.NET Web site
bulk typo
Nov
18
comment optional parameter????
where iz da codez?
Nov
17
comment Breaking CAPTCHAs for a Noble Purpose
This will always be a cat and mouse game from what I can tell. If there is financial gain from being able to break these CAPTCHAs then hackers will keep trying. Developers will continue to find newer techniques that are harder for computers (and hackers) to break. @Jason is right though... as long as there are surfers willing to solve CAPTCHAs for pr0n or money it doesn't matter how hard they are. @Patonza is correct too. rate limiting is needed so that if and when the "bad" guys get in, they can't do too much damage. Shut down the hackers once they get in they'll soon learn it isn't worth it
Nov
17
answered How do I debug random crashes in my web app in IE?
Nov
17
comment First jQuery script, simple Form Focus, any problems?
@Hooray Im Helping - I think once you are used to the $(function(){...}); syntax for setting up code for the ready handler it helps clear the clutter.
Nov
17
comment Tabindex for input type file in IE
Just for the record, focusing the textbox is/will become obsolete. For security reasons you can't type in a path/file any more and must interact with the popup file dialog.
Nov
17
revised JQuery MySql update
added php tag
Nov
16
answered How to check which images/css/javascript are used in web app?
Nov
16
comment Generate frame for picture
@Oduvan - correct, IE doesn't support Canvas (yet) thus it won't work there. - However as you noted, excanvas (explorercanvas) does a pretty good job of filling in for IE's lack of support. I haven't tried the frame example in IE using excanvas but (fingers crossed) hopefully it can work. @rochal's answer is pretty much what I was suggesting for the other option. When I get a sec, I'll post a bit of jQuery that does it. Note: MSFT hinting at dabbling in actual Canvas support (possibly in IE9) in IE Blog post: blogs.msdn.com/ie/archive/…
Nov
16
comment Preserving SCRIPT tags (and more) in CKEditor
not sure what you are building... but if this editor accepts script tags and emits them in the output back to the page you are totally exposing your site to XSS (Cross Site Scripting) attacks.
Nov
15
revised Attaching a stylesheet with dirname(__FILE__) won’t work even though the file is there.
formatting
Nov
15
answered Generate frame for picture
Nov
14
awarded  Nice Answer
Nov
14
answered Is there a way to show alt=”text” as a mouseover tooltip in firefox like IE does automatically?
Nov
14
revised OnSubmit is not working in IE 8
wrapped, formatted for readability
Nov
13
answered Is there is reliable way to find out which revision of ECMA-262 my browser supports?
Nov
13
comment window.onbeforeunload not firing in child window
based on your title, did you mean to set newWind.onbeforeunload? I also take it that defining the onbeforeunload in the "settings.url" page is not an option?
Nov
13
revised form validation with javascript vs php
tidy
Nov
11
asked What engine powers the GWT Hosted Mode browser?
Nov
11
comment How do I open one Fancybox after another closes?
Nice Avatar... Random coincidence? or should I be flattered? ;-)
Nov
10
comment Strange IE7 Printing Bug
do you have a URL or some sample code?
Nov
10
comment JavaScript IE appendChild() - Unexpected call to method or property access
...and these are definately div's? not option, table, thead, tfoot, tbody, tr, td, script, style or param elements? ;-)
Nov
10
comment cut out part of a string
Just curious... the String.substr() method seems to work for most scenarios I encounter - however you seem to have a need to remove a "middle" string bit - do you have a sample "real world" case where this occurs regularly?
Nov
10
comment find name of company at URL
if not, the meta tags will likely include it
Nov
10
comment JS file generated with PHP does not load at first time in IE6
You'll likely need to post some sample code to indicate how you are doing this. There may be a syntax error that is causing issues, or maybe the content type isn't being correctly handled.