Kasturi
Kasturi

Reputation: 3333

Jquery sends a Get request to /false

I'm trying to write a file uploader and jquery sends a get request to /false which returns as a 404 obviously. What is jquery trying to do? Should i implement a service at /false.?

EDIT:

The request gets sent out as soon as i select a file to upload. I'm using the jquery's file uploader plugin.

I dont think there is any variable for the url. But i'll check on it.

Upvotes: 0

Views: 59

Answers (1)

Levi Morrison
Levi Morrison

Reputation: 19552

It sounds like you are using a variable name for where to send your request to, and for whatever reason that variable is literally false. Change the variable value to where you want to send the request to. That's my guess.

Upvotes: 1

Related Questions