I'm trying to validate a form to check if everything is at least populated.
The problem is that I'm not submitting the form because I can not reload the page. I'm just capturing the event by JavaScript and performing the function.
Follow the...
I'm putting together a page where the person could compare 2 products.
I have 2 tables, categories and products.
The 1st comboBox makes a select in the category table. When you choose a category, it calls a file that sees which products be...
At the moment I have some banners that are loaded via ajax, and each one makes a request to load the html. Now I am trying to optimize these processes and I have decided to make a single request to load as many banners as are available on the pa...
There is a part on my site where there is select with several places in Brazil. When selecting a place, just below it has a iframe with GoogleMaps that automatically updates to the coordinate corresponding to the selected location....
I wanted to make a slide slider, from right to left and vice versa, but I'm not able to increment the px number, everything is malfunctioning.
HTML:
<div id="next"></div>
<div id="prev"></div>
<div class="slider"...
I have this code of selectpicker (bootstrap)
<select name="nivel_p" class="selectpicker">
<option>menor que 6</option>
<option>7-15</option>
<option>16-40</option>
<option>maior q...
I have the following JSON return
{"cliente":[
{"id":"1","nome":"Fulano"},
{"id":"2","nome":"Ciclado"}
]}
And I need my popular autocomplete ,
$('#nome').autocomplete({
source: function(request,...
I'm trying to validate a input of type file with Jquery Validation.
Following the documentation, I do the following:
My input:
<input class="form-control" id="ImagemUpload" name="ImagemUpload" type="file" value="">
an...