Date objects in JavaScript are reference types, so when you assign one date object to another variable all you’re doing is assigning the reference to the date object to that variable, so you end up...
The best thing to do would be to google ‘WordPress Course’ or ‘WordPress Training’ then view courses that are currently on offer by training companies, see what they’re covering and in what order and...
Shockwave is right, you wouldn't use a while loop for this. The question I would ask though is how is the data being stored that you want to work with? If it's all in one string then a simple...
http://www.w3schools.com/ - this is a website many recommend for tutorials, however I believe you're better off buying up to date books on the topic as most website tutorials are very dated.
Memory leaks for closures is really an IE problem due to the different garbage collection routines used for jScript objects versus COM objects. Storing a scope in which an HTML element is stored...
Why would using Visual Studio take more than four weeks? Given the spec you've laid out it would be ideal in my view. You can automate the creation of a database that has user accounts, user/admin...
If you want to stick to the design side, as it seems you do, then I'd go with HTML and CSS as suggested by cfajohnson. I'd add Dreamweaver to that as it tends to be favoured by designers, it's easy...
Well the simplest, but not the cleanest, solution would be to define your variables outside of the function so they’re available everywhere else in the page including other functions.