View Single Post
  #3 (permalink)  
Old Oct 2nd, 2007, 11:22
Rakuli's Avatar
Rakuli Rakuli is offline
SuperMember

SuperMember
Join Date: Sep 2007
Location: Australia
Age: 24
Posts: 956
Blog Entries: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Javascript Ajax problem

Hi there Hermanisbanken welcome to Webforumz

Having a look at your code, I think that javascript is getting lost in the scope of your variables.

You declare idVanTeBerwerkenObject as a global variable at the top of your page but never actually treat it as such, you use the variable name to pass around in your functions.

Try taking this line

var idVanTeBewerkenObject;

Out of the script entirely and trying again.

Cheers,