I'm using the jquery.form plugin to asynchronously upload documents in an MVC project.

Taking my lead from this previous answer, here's what I have on the page:

<% using(Html.BeginForm("Create", "JobFile", FormMethod.Post, new { id = "uploadForm", enctype = "multipart/form-data" })) %>
<% { %>
<%: Html.ValidationSummary() %>

    <input type="file" id="fileToUpload" />
    <input type="submit" value="Upload file" />
    <input type="text" id="RelatedFileName" />

<% } %>

<script type="text/javascript" src="../../Scripts/jquery-1.4.1.min.js"></script>
<script type="text/javascript" src="../../Scripts/jquery.form.js"></script>
<script type="text/javascript">
    $(function () {
        $('#uploadForm').ajaxForm(function (result) {
            if (result.errorMessage != '') {
                alert(result.errorMessage);
            } else {
                $('#RelatedFileName').val(result.fileName);
            }
        });
    });
</script>

My problem is that when the page loads I get the following javascript error:

Uncaught TypeError: Object # has no method 'ajaxForm'

This error is found on the line containing

$('#uploadForm').ajaxForm(function (result) {

Can anyone tell me why I'm getting this error?

link|improve this question

59% accept rate
feedback

2 Answers

Is 'uploadForm' the id of your <form> object? If it is then you may wan to check in something like FireBug to make sure your plug-in is included on your page properly.

link|improve this answer
Yes, 'uploadForm' is the ID of my form. The downloaded source is "<form action="/JobFile/Create" enctype="multipart/form-data" id="uploadForm" method="post">". If I use the debug/source tool in Chrome I can see that jquery.form.js IS being downloaded (it's listed on the "Scripts" tab). – awj Nov 18 '10 at 20:18
IE9 says pretty much the same: the script file IS downloading, and the error that it comes up with is "SCRIPT438: Object doesn't support this property or method". – awj Nov 18 '10 at 20:22
You may have to change your script then so it gets called on page load: $(document).ready(function () { ...code...}); That way the form will have the function prototyped correctly if the plug-in is installed. Otherwise I would look into your script, because that should work. – wajiw Nov 18 '10 at 20:26
I've copied the entire jquery.form plugin script and pasted it into a <script> element on the page. Same situation - error message still appears. So downloading the file isn't the root of the issue, but somehow the script isn't being loaded. I've re-downloaded the file to ensure that I haven't missed a closing brace or anything like that, but I still have the problem. – awj Nov 20 '10 at 11:46
Is it stored locally? If so it may be a permissions issue. – wajiw Nov 20 '10 at 16:30
show 2 more comments
feedback

The shortcut:

$(function () {

Doesn't work in latest version of jQuery, have to use:

 $(document).ready(function () {
link|improve this answer
That's helpful to know, but I wouldn't be getting the error on page load if "$(function(){" wasn't working in the version I'm using. Nonetheless, thanks for the tip, and I have now changed it. – awj Nov 18 '10 at 20:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.