Questions tagged as 'jquery'

2
answers

convert $ .getJSON script to $ .post

I have a problem I am trying to pass a series of $ .getJSON script to $ .post: $(document).ready(function(){ //getdeails será nuestra función para enviar la solicitud ajax var getdetails = function(id){ return $.getJSON( "index...
asked by 30.10.2017 / 19:36
2
answers

How do I open a player when I click on a div?

Good, I am trying to make a web page where video titles and their respective thumbnails are shown and when clicking on them, a small player appears in the middle of the page that has the option to put it in full screen. This would be the inte...
asked by 06.11.2017 / 10:18
2
answers

How to work on an external file with Jquery in Visual Studio Code?

Good! I am studying Web Programming and I have been using the editor vs code for a long time. When I want to use Jquery in an external file the auto-completion does not appear, there is no syntax help. Can someone help me?     
asked by 23.01.2018 / 17:23
1
answer

Error message below the input and textarea

I am struggling with Bootstrap 4 and Jquery Validate to get the error message displayed BELOW OR UP from input and textarea but I do not succeed. In the input, the message appears on the right. In the textarea it DOES NOT APPEAR and neither t...
asked by 25.10.2017 / 20:51
2
answers

Add one div within another using JQuery AJAX

I have a div within HTML a DIV element <div class="row"> </div> And in a JS file I have a JQUERY function $.ajax({ url: 'https://swapi.co/api/people/?format=json', type:'GET', dataType: 'JSON',...
asked by 14.10.2017 / 13:14
2
answers

I can not hide div with jQuery

I do not get that by clicking on a label , through jQuery a div disappears. I am the part of HTML is this: $(document).ready(main); function main(){ $('#label_cookies').click(function(){ document.getElementById('caja_coo...
asked by 14.10.2017 / 19:21
2
answers

Autocomplete conditioned using JQuery

Greetings, I am developing a form where the user searches for a place and a work center using Input Text with Autocomplete in < strong> JQuery , but since there are many records in the database, I placed a Select that shortens the sear...
asked by 27.09.2017 / 20:34
1
answer

How to get the values of a form? [closed]

Good morning, with everyone, if at some time, you were asked to develop a form with many input, I propose this solution Jquery and JavaScript and of course you send it by Ajax . var config = {}; //--->> calcular cuantos input t...
asked by 30.09.2017 / 17:50
2
answers

Check fields and stop sending form

I have a form that checks the value of two textboxes, if they are different it shows the message that one of the fields should be fixed, but even so it sends me the information fulfilling another class, here my code: This is the one that comp...
asked by 18.10.2017 / 04:45
1
answer

Get values from a table and convert it into an array

I have a table like the following, in which data is inserted, what I want to achieve is that when pressing the button an array is formed which contains four fixes each of them with the value of each one of the inputs. The arrangement that I n...
asked by 18.10.2017 / 20:01