Skip to content

Tag: jquery

FormData is empty when using jQuery ajax()

I try to submit form with file with jQuery.ajax. Google says I should use FormData which will automagically encode the file and all inputs into the one object which I can send via XHR. Well, the FormData object is empty. It’s empty in the debugger and on the server side. I can’t find the error. He…

Can’t stop setInterval with clearInterval

Been playing with this in a fiddle for 4 hours now and cant find a solution… HTML: js: Note: because clearInterval is not working you need to click on “run” in the jsfiddle to get it to stop after clicking the checkbox, you have 7 seconds between alerts… Here is a link to the jsfiddle:…

ReferenceError: $ is not defined

I have this error message ReferenceError: $ is not defined This is my header. Following is my JavaScript code Following is the HTML I want to show datepicker on the input tag. I am using Bootstrap V3.1. I am using this datepicker. Answer Add jQuery library before your script which uses $ or jQuery so that $ c…

My displayError() function is not working at all

I made a function that should display an error or remove an error. Unfortunately, when I use the function in any way, for example like displayError(true, “test”);, it’s not working. When I check my html code to see if anything changes, nothing is changed. Anybody who can identify the problem…