Page 1 of 1

Good javascript forum?

Posted: Sat Feb 26, 2011 3:02 pm
by Isaac
I was looking for a javascript forum for beginners. There seem to be quite a few so I thought I'd ask what you all recommend.

I keep running into weird javascript issues on non firefox/chrome/explorer browsers.

Thanks! :mrgreen:

Re: Good javascript forum?

Posted: Sat Feb 26, 2011 8:47 pm
by fliptw
I just abuse google.

there are sites that list what exactly IE doesn't support, those would be a good place to go.

Re: Good javascript forum?

Posted: Sat Feb 26, 2011 9:19 pm
by Isaac
Thank you.

Re: Good javascript forum?

Posted: Sat Feb 26, 2011 10:37 pm
by Jeff250
Isaac wrote:I was looking for a javascript forum for beginners.
This one? :P
Isaac wrote:I keep running into weird javascript issues on non firefox/chrome/explorer browsers.
Try jquery. It smooths out inconsistencies in browsers, and it makes programming in raw javascript seem tediously painful by comparison.

Re: Good javascript forum?

Posted: Sun Feb 27, 2011 3:18 pm
by Isaac
Hey Jeff, thanks! It looks as if ubuntu comes with Jquery already installed. I must try it.

I found a good javascript forum for asking help. Normally I try to solve problems on my own, but sometimes I stuck in places. Crowded help forums take some of the guilt out of asking.

Jeff, I like showing you stuff when I think it might be interesting to you or others here, or when the other forums don't have an answer. That's good, right?

Anyway, thanks again!

Re: Good javascript forum?

Posted: Sun Feb 27, 2011 10:31 pm
by Jeff250
Isaac wrote:Hey Jeff, thanks! It looks as if ubuntu comes with Jquery already installed. I must try it.
I actually didn't know that (I wonder why they preinstall it), but it's just a single *.js file download, so I'd recommend downloading it from jquery's site for up-to-date-ness.
Isaac wrote:Crowded help forums take some of the guilt out of asking.
You should feel guilty for feeling guilty about asking programming questions in a forum for asking programming questions.

Re: Good javascript forum?

Posted: Mon Feb 28, 2011 7:36 pm
by Thenior
Isaac - I use jQuery a ton. Just hotlink to the google code hosted version - most people link to this, because it's common enough it is stored in cache.

https://ajax.googleapis.com/ajax/libs/j ... ery.min.js

Also, when you have questions, go to http://www.stackoverflow.com. They are extremely helpful when it comes to Javascript questions (php too). Just keep in mind they heavily moderate, and they take their answer scoring system very seriously (i.e. if someone answers your question, check the correct awnser).

Another decent site is http://jqueryfordesigners.com/.

I originally started with http://www.tizag.com/javascriptT/ . I don't consider myself to be a very good coder, but I can do some cool stuff with jQuery - see http://www.bavarianblue.com and http://www.koffeebreak.info (reload the Koffee one, it will display a jQuery slider - you can check my code too).

Re: Good javascript forum?

Posted: Mon Feb 28, 2011 8:30 pm
by Isaac
wow! Lots of cool stuff!

I've been to stackoverflow many times! I just never joined.

I'll be reading!
Thanks.

To jeff: There's always some guilt to not finding the answer on my own.

Re: Good javascript forum?

Posted: Tue Mar 08, 2011 11:38 pm
by Verran
Another essential: install the Firebug add-on to Firefox and use it for debugging. The console is a life saver, especially if you do anything with ajax.

Re: Good javascript forum?

Posted: Wed Mar 09, 2011 2:06 am
by karx11erx
Thenior wrote:Also, when you have questions, go to http://www.stackoverflow.com. They are extremely helpful when it comes to Javascript questions (php too). Just keep in mind they heavily moderate, and they take their answer scoring system very seriously (i.e. if someone answers your question, check the correct awnser).
I guess that is because they are taking quality very seriously and have learned from other places in the web (e.g. many "support" forums) how not to do it. The place to find (or give) answers with the highest general expertise level I know of. There may be specialized places with (even) more knowledgeable people, but StackOverflow scores with the mass of qualified participants.