Re: .net javascript masterpage conflict
There are a couple of different methods for creating functions in JavaScript. The two examples below will do the exact same thing.
Code:
var functionName = function(parameters) {...}
function functionName(parameters) {...}
As for your code not working on a separate page, I would suggest double checking all elements referenced. The code itself is correct. But, in JavaScript you should always line terminate with a semicolon. If you don't debugging goes defunked!!!
If the post was helpful...Rate it! Remember to use [code] or [php] tags.