I'm hoping someone can help me here. I can't get make a successful ajax call using django, jquery and the jquery form validation plugin. I'm trying to pass a form email address to a view method to see if it exists in db. But server response is 404 on ajax request. In Firebug i can see the request being sent appears to be formatted properly.
request sent is: http://127.0.0.1:8000/xEmailExists/?email=joeblow%40test.cc
urls.py has: (r'^xEmailExists/(?P\d+)$', 'hwa.website.views.root.xEmailExists'),
and my hwa.website.views.root view file has the following method signature: def xEmailExists(request, email):
I'm using Django 1.1 Bet