Questions tagged as 'jquery'

1
answer

Loader Jquery 3.2.1 / Bootstrap 4.0

<style> .loader { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 9999; background: url('load.gif') 50% 50% no-repeat rgb(249,249,249); } </style> In body: <div class="load...
asked by 30.01.2018 / 09:27
0
answers

Upload Files with Php and jquery

the topic is the following I am trying to upload a file with jquery and php the code is as follows: html <div class="form-group"> <label for="archivo" class="control-label col-xs-5">Comp...
asked by 02.02.2018 / 01:01
1
answer

Is it possible to update data without having to reload the page?

Well, in a few words I bring data by AJAX and at the same time I create and remove data from the page as the user interacts with it. The problem is that I am trying to segment data but this has become too problematic since I do not know i...
asked by 29.01.2018 / 15:39
2
answers

Blueimp - fileupload. upload many stored images

Hello community, I have the following problem with blueimp fileupload . I want to upload a single image to the server. But when I select in the input type file several times and select different images I receive all those images as if it...
asked by 29.01.2018 / 14:11
0
answers

have you integrated the standard validation of webforms and jquery validate?

I wanted to know if someone has used jquery validate with webforms and if it is a good idea. I really like the way it highlights errors and being able to dynamically program it with jquery, for example when you program a modal window with bootst...
asked by 29.01.2018 / 13:53
0
answers

jquery ui datepicker date range, how to make the second date is not automatic

Good times I need to know how to do so that when the user selects the date of entry, do not open the 2nd date. HTML <div id="fecha" class="col-xs-12 col-md-6 right block-right"> <div class="col-md-7 col-xs-...
asked by 02.02.2018 / 21:03
1
answer

xhr status 0 ajax

I have a script where I use ajax that does not go into success $.ajax({ data: parametros, url: '../gestionUsuario/insertUsuario.php', type: 'post', success: function(response) { alert("hola success"); if (resp...
asked by 12.02.2018 / 17:44
0
answers

Send data using (jquery Validation) and display a message in the same modal

I did a modal where I'm going to record new data. This form sends the data from a PHP file. If the data is recorded or not registered, it will send me a message. This message is passed through a JavaScript file so as not to reload the page and t...
asked by 12.02.2018 / 22:32
0
answers

Move the date with Jquery from a datatimeField generated with Django

I have a view that has a datetimepicker that I generate with Django such that: class una(forms.Form): start_edited_date = forms.DateTimeField(label="Fecha inicio", widget=DateTimeWidget(usel10n=True, bootstrap_version=3), required=False) end_e...
asked by 06.02.2018 / 18:23
1
answer

No value when doing a jquery.get () on a json file

I have an api that returns a json whose format is as follows: { "id": 255, "texto": "En un lugar de la mancha", "categories": [] } From an HTML I try to get one of the multiple phrases of the API in the phrase variable with the following sc...
asked by 09.02.2018 / 17:24