Questions tagged as 'jquery'

1
answer

error when passing php variable with ajax

My problem is as follows I have a BOOSTRAP menu where the content is extracted from a database mysql , being that when selecting an option I load the content of a page in a field div of central id. When I make the selection I...
asked by 17.09.2018 / 22:52
3
answers

Put blank space every 20 rows in an html table

Is there any way to put a blank space in a table every X rows? I do not care if it's with css, with jquery or whatever. This is what the page generates, and the space I want to put in the red box. Pages are created as needed and create...
asked by 29.12.2016 / 22:00
2
answers

Problem with the bootstrap modal backdrop

I have a problem closing a modal, this problem does not always happen, well the detail is that the backdrop of the modal is attached image. The modal is closed but the backdrop remains, the way I am closing it is as follow...
asked by 27.05.2016 / 22:09
3
answers

Is it correct to put an event inside another event? [closed]

I have a script in which I am going to add XLS files, once I validate the file format, I close a bootstrap modal and open another modal where it is a confirmation window to see if it is safe to upload that file. This confirmation modality has...
asked by 01.02.2018 / 20:16
3
answers

How to remove spaces between div with css or Jquery?

I have been trying to remove the space that forms between the rows of the tables. This is what I have tried. I just tried to put border: 1 px solid black and still does not take the form I would like. I want the grid to be left without that d...
asked by 27.04.2018 / 16:53
2
answers

Select dependent on Django?

How do I place four select to my template that show state, municipality, location? and of course, if the user selects the state DF, the other select only brings the municipalities and localities. How do I do it? In order to save them al...
asked by 04.01.2016 / 18:07
4
answers

I can not consume a Web service with jQuery; Answer Requested page not found [404]

This is a fragment of the webservice: [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)], [System.ComponentModel.ToolboxItem(false)], [System.Web.Script.Services.ScriptService]) public class ClientServei : System.Web.Services.We...
asked by 24.12.2015 / 11:40
2
answers

How do I remove the scrollbar to the body?

I'm looking for how to remove scrollbar to body to assign this other scrollbar that you can see if you execute it but this should include the same scroll functions (function($) { $(window).load(function() {...
asked by 14.01.2018 / 03:55
5
answers

How to add the values of the same arrays positions?

I want to add the values of the same positions? Here's my fix: var arr1 = ["1","2","3","4"]; var arr2 = ["2","1","3","4"]; The result must be: var NuevoArreglo = ["3","3","6","8"]; I'm waiting for help.     
asked by 28.06.2016 / 19:56
3
answers

Get the value of an element "a" from jQuery

HTML: <a onclick="funcion(this)" value="4">Un Nombre</a> JAVASCRIPT: <script> function(elemento){ console.log(elemento.value); } </script> this is giving me back    undefined     
asked by 04.08.2016 / 04:51