Today Noupe posted an overview of the most wanted ajax techniques. A list of over 50 solutions for common javascript problems. Librarys used include JQuery, Prototype and Mootools. It’s a good checklist if you need something special, done quick. I especially like wTag and Starbox. Thanx Noupe.
Tag Archives: javascript
Javascript date object
Posted by admin
on October 27, 2008
No comments
var mytime = new Date()
var mymonth = mytime.getMonth() + 1 // for javascript january = 0 correct this by adding 1
var myday = mytime.getDate()
var myyear = mytime.getFullYear()
document.write(mymonth + "/" + myday + "/" + myyear)
Beware that this is the date on the client's computer. For forms use the date on your server.
Related Blogs
- Related Blogs on
javascript variables
Posted by westworld
on October 9, 2008
No comments
