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...
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...
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...
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...
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-...
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...
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...
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...
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...