ASP.NET MVC Ajax OnBegin/Complete Javascript Problem
- by mrkcsc
Hello,
I am trying to fire off a javascript method using the OnBegin AjaxOption in an Ajax method.
However, when debugging with firebug the callback in unable to find the Javascript method and I do not know why.
My code is simple, first I use a basic Ajax method like this:
<%= Ajax.ActionLink("Testing", "Testing", new AjaxOptions { OnBegin = "RunThisThing" }) %
Then under it I decalre this script.
<script type="text/javascript">
function RunThisThing {
alert("WORK")
}
</script>
Yet when I try running the page and clicking on the link, Firebug tells me "RunThisThing is not defined".
Any idea what I might be doing wrong?