| bio | website | crowdersoftware.com |
|---|---|---|
| location | United Kingdom | |
| age | ||
| visits | member for | 3 years, 9 months |
| seen | 8 hours ago | |
| stats | profile views | 11,094 |
I'm an independent software engineer with a particular interest in web technologies (esp. JavaScript). I also do lots of work in C#, Java, and several other languages.
On occasion, I write up snippets of nifty tricks or techniques in my anemic little blog.
I've been doing this professionally for over 20 years, goofing with computers for 10 years before that, but I hope I'm not this guy.
I'm an independent contractor. If you have a bit of work you need done, and done properly, give me a shout at tj@crowdersoftware.com. Whether it's a couple of hours of sorting out a script, or a couple of months designing and implementing a new application or system for you, I can usually work you into my existing commitments as long as you're willing to share my time with others. (I don't currently have any exclusive availability.) My rates are reasonable, and of course, you have a good idea what you're getting if you browse the more than 4,000 answers I've provided on Stack Overflow.. :-)
I've had issues with the Stack Exchange management's curation of the network (particularly Stack Overflow, where I've been most active), including this idiocy and this, as well as everyday unreasoning obstinance — which have caused me to periodically curtail my contribution. I'm hopeful the change in management earlier this year will improve things.
|
8h |
comment |
Load JQuery file dynamically and execute it possible duplicate of How to include a JavaScript file in another JavaScript file? |
|
8h |
comment |
Load JQuery file dynamically and execute it "I have to load dinamically the JQuery script beacause the script is sometimes charged and sometimes it doesn't." Huh? |
|
8h |
comment |
Load JQuery file dynamically and execute it Even better, put this at the bottom of the page, at the end of the body, and ditch the use of jQuery's ready as it's completely unnecessary. That improves the perceived load time. More: developer.yahoo.com/performance/rules.html |
|
8h |
comment |
Load JQuery file dynamically and execute it Note: You're trying to give a script element both a src and content (via text). You can't do that, a script element can have one or the other, never both. |
|
8h |
revised |
How to loop through array in jquery There's basically no speed advantage to avoiding $.each / forEach, add link explaining that |
|
12h |
reviewed | Approve suggested edit on How to check if checkbox is chacked with if |
|
12h |
comment |
Randomize the order of divs displayed and hidden using jquery @DmitryKvochkin: Yes, but your initial answer was basically just "Use Math.Random (sic), which was of little value. This revised answer has value, other than oddly always assuming six divs... |
|
12h |
comment |
Randomize the order of divs displayed and hidden using jquery What if it randomly picks one that's already faded in? |
|
13h |
answered | Using Object.create() to develop a prototype chain |
|
14h |
comment |
How to set selected option right after injecting innerHTML into DOM? Code is worth 1024 words... ;-) |
|
15h |
comment |
How to call a Javascript method with dynamic paramters depending on the table row? A viable option. Note that you don't need the return false, because there is no default action for click on a tr and return false in a DOM0 handler doesn't also stop propagation like it does in jQuery. |
|
15h |
revised |
How to call a Javascript method with dynamic paramters depending on the table row? added 661 characters in body |
|
15h |
comment |
How to call a Javascript method with dynamic paramters depending on the table row? @Alnitak: Technically, yes, although browsers have always supported them in HTML (just not CSS). |
|
15h |
comment |
How to call a Javascript method with dynamic paramters depending on the table row? Creating the generator function within the loop is an anti-pattern. Put the generator function outside the loop (or better yet, use the three other ways that are available here without using an additional function at all). |
|
15h |
answered | How to call a Javascript method with dynamic paramters depending on the table row? |
|
16h |
comment |
Some JavaScript causes Safari (on mac/ipad but not windows) to crash / quit unexpectedly No. Again. Put the code and error in the question, see the link above for why. SO has perfectly fine formatting tools. I can't imagine what you mean about not having access to the code. Isn't this your page? If it isn't, why are people complaining to you about it? |
|
16h |
comment |
Some JavaScript causes Safari (on mac/ipad but not windows) to crash / quit unexpectedly Include all relevant code and details in the question itself, don't expect people to visit random links in your question. Why: meta.stackoverflow.com/questions/118392/… |
|
17h |
answered | Modify object property in an array of objects |
|
19h |
revised |
html class and type declare in javascript edited tags; edited tags |
|
19h |
comment |
html class and type declare in javascript 1. What do you mean by "an HTML class"? Do you mean a CSS class? 2. What do you mean by you want to "declare" it? 3. document.location.href is a property, not a function. 4. There is no classList property on document (there is a newly-defined classList property on HTMLElement, but it's not broadly-supported yet, and again, it's not on document). 5. What is shape? 6. What is layer? 7. Are you using jQuery? If so, I'd recommend adding the jquery tag so people know that for sure rather than inferring it. |