Hi there!
I'm using jQuery Form plugin and I have following by this script:
- $('#addnews').ajaxForm(function() {
- window.location = "?action=news"
- });
If my form has got even one <input type="file".. for does submit to the server (adding data to database) but it doesn't do the windows.location function. How can I make my form to change window location even if there's a
type="file" input inside?
Thank you!