It looks like you're new here. If you want to get involved, click one of these buttons!
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Timestamp: Tue, 16 Feb 2010 19:30:00 UTC
Message: Object doesn't support this property or method
Line: 244
Char: 5
Code: 0
URI: http://localhost:3328/Scripts/Plugins/U ... .v2.1.0.js
document.getElementById(jQuery(this).attr('id') + 'Uploader').startFileUpload(ID, false);document.getElementById(jQuery(this).attr('id') + 'Uploader').startFileUpload(ID, false);message: Statement on line 244: Type mismatch (usually non-object value supplied where object required)
<input type="button" value="Open Photo Dialog" onclick="DialogOpen()" />
....
<div id="dialogUpload">
...
<div id="uploadButtonContainer"></div>
...
</div>
// Open Dialog Window
function DialogOpen() {
var buttonText = '<input type="button" id="uploadButton" value="Choose Photos" />';
$("#uploadButtonContainer").html(buttonText);
$("#uploadButton").uploadify({...});
$("#dialogUpload").dialog("open");
}
// onload events
$(function () {
$("#dialogUpload").dialog({....});
}