Postback disabling Javascript?

Hey guys,

I’ve run into some trouble with a bit of Javascript on a ASP.NET project - basically when I load the page my little Javascript functions work great, but when I then query the server for some data or cause any other kind of postback, my Javascript simply stops working?

Is this some kind of known issue with a fix?

I can’t post the code at the moment, but basically all I have is a few Javascript functions inside the <head> tag of my HTML.

Any ideas?

Thanks in advance!

When requesting from the server, you only get the HTML code that first loads in to the web browser.
The way that JavaScript works is that it runs on the client side after the browser has loaded the page.

Can you provide an example of what stops working?