Learning Guide
Jul 20, 2005Does anyone have and good resources(free possibly) for learning javascript?
View 1 RepliesDoes anyone have and good resources(free possibly) for learning javascript?
View 1 RepliesI often use the HTML reference guide at Microsoft which is located
here: http://msdn.microsoft.com/library/d...ce/elements.asp
It gives a descriptions and examples of HTML elements. Can anyone
point me at any similar resources for Javascript?
I learn OOP in javascript. and a few articles say that we can create a static prop/meth to an object just like a predefined object. But i think it just a prop/meth assingned to a constructor. Or is there really static meth/pro in javascript?.
View 1 Replies View Relatedhow long did it take you to kearn Javascript to the point that you felt comfortable and confident! I am finding that I seem to be having a harder time with it than others! I have been learnig javascript for 4 years now and still find myself having trouble grasping the big picture?
I would think after so long one would know their way around the language what ever it maybe! I guess basically I would like to know if it is normal to be so confused about javascript?
Anyone have a javascript book recommendation. I'm experienced in development in ASP.NET and VB.NET, but have little knowledge of javascript.
View 2 Replies View RelatedI'm in the process of learning JavaScript. I picked up a "JavaScript for dummies" book at the library and it wasn't going too well. It was poorly written and made it difficult to understand things in the later chapter.
What is the best online resource to learning JavaScript? Preferrably one that is good at explaining format ( I often find myself wondering if certain aspects in my script need ()'s or a "=" sign).
For example, HTML has tags and that is what forms the mark up. I know JavaScript has multiple aspects (functions, objects), but I want an online resourcethat properly explains the format of these aspects.
Can someone tell me how to learn JS? Can you recommend me some books or video tutorials? What is the best?
View 2 Replies View RelatedI am a begginer in JavaScript,
Do I start learning(today) ECMAScript 5 or ES3 and then learn ES5?
I have no js experience or coding experience of any kind other than the last few hours of reading a book called 'object-oriented javascript', and all was well until loops. firstly, this is how he teaches the while loop...
var i = 0;
while (i <10)
{i++;}
which results in 9 we move on to for loops...
var res ='';
for( var i = 0; i <10; i++)
{res += 'sometext' ;}
which repeats, but I'd like to be able to make that into a sequence of numbers... 123456789.
I am currently learning jQuery from the book Learning jQuery 1.3 and I have run across a block of code that is not working for me in FF or Safari.
Here it is copied straight from the book (page 64)
I tested the next step that accomplishes the same thing with different code but I would like to understand why this is not working.
I was wondering how to make URL...by Karl, work with an unordered lis instead of divs. I tried the below but did not work. I think what I have done here ('.links:visible');looks plain wrong (I can't put a class or an Id in there right??)[code]
View 3 Replies View Related