Most wanted Ajax stuff

November 4th, 2008 § 0

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.

wTag

Javascript date object

October 27th, 2008 § 0

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

October 9th, 2008 § 0

Make sure your variables in javascript are unique. They should not be used in id’s and classes. IE doesn’t like it. (Works fine in Firefox)

Where Am I?

You are currently browsing entries tagged with javascript at westworld: a webmasters best friend.