View Single Post
10-18-2006, 09:29 PM
#2
Bas is offline Bas
Status: I love this place
Join date: Jan 2005
Location: The Netherlands
Expertise: Frontend, vBulletin
Software: Coda, Photoshop
 
Posts: 607
iTrader: -1 / 0%
 

Bas is on a distinguished road

Send a message via MSN to Bas

  Old

In this code you can't have an argument in the function:
Code:
http.onreadystatechange = update_rating(video_id)
It has to be either this:
Code:
http.onreadystatechange = update_rating
Or this:
Code:
http.onreadystatechange = function()
{
	// video_id here
}