1đź‘Ť
You should be more specific about what “it’s not working” means.
However one obvious mistake is that you are including your own script file – which depends on jQuery – before you load jQuery itself, which will fail. Move your script tag to after the jquery ones.
Also, you are including both jQuery and jquery-validate twice, from different targets. Don’t do that; pick one and use it.
👤Daniel Roseman
0đź‘Ť
There was a dot in your call to the jQuery ready
function…
$(document).ready.(function() {
should be…
$(document).ready(function () {
👤Lucas Lahoz
- Django-cms ImportError: No module named sitescms
- Adding a list of menu items in a django session
- Pip is not installing packages on docker
- Django: correct URL appears in developer tools but link doesn't use that src
- Send, receive, save local image file with requests / django rest framework
Source:stackexchange.com