Javascript unable to pass parameters into a property acting as a function

Posted by BOverflow on Stack Overflow See other posts from Stack Overflow or by BOverflow
Published on 2010-05-14T23:21:16Z Indexed on 2010/05/14 23:24 UTC
Read the original article Hit count: 239

Filed under:
|

Currently in a simplified form, my code looks like this

function AddFileParam(file_id, name, value) {
    uploadcontrol.addFileParam(file_id, name, value)
}

uploadcontrol = new Upload()

function upload() {
    //logic
}
upload.prototype.AddFileParam = function(file_id, name, value) {
    //logic
};

The code is giving me an error as it states that addFileParam is not a valid function. This is caused by the instance of the function upload (aka. uploadcontrol). This is only occuring in Firefox/Chrome and not in IE. Any ideas on how to fix this?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about cross-browser