Questions tagged as 'jquery'

1
answer

Error in MYSQL and PHP query

Good afternoon. I do not know why this query is not done in PHP and Mysql This is the code of the form to send the content: <?php session_start(); if(!isset($_SESSION['usuario'])) { header('Location:auth'); exit(); } include 'conexion.ph...
asked by 15.11.2017 / 21:45
2
answers

Problem adding millions to a table replace jquery

Currently I take all the values of the second column sums and I remove the "$" and ".", only works when they are 6-digit numbers by placing 7-digit numbers in the table the sum is wrong, What can be done? in my opinion I am doing wrong replace t...
asked by 14.07.2017 / 22:13
4
answers

get value out of click event with jquery

How can I get the document variable out of clcik? obtenerDocu: function() { $('#documentos-table tr').click(function(e) { e.preventDefault(); documento = $(this).closest("tr").find('td:eq(0)').text(); }); re...
asked by 11.09.2017 / 14:04
1
answer

How to create a list with indeterminate levels?

More than 1 month ago I asked the following question: How do I create ul and li with a recursive function? and I was solved the problem I had. Currently I need to make a menu with indeterminate levels (the user is the one that will form...
asked by 25.08.2017 / 10:40
1
answer

Problems refreshing a page using Ajax + PHP

I have a table with a series of records, I frame with several checkboxes of them. I click on a button that updates the records, what it does is call a php script through Ajax as many times as I have selected records. Well once finished, the p...
asked by 29.06.2017 / 17:46
1
answer

Counter does not work

I have a table with different foods and for each food a checkbox. I want for each selected food to be adding their kcals and show them at the end. The kcals of each food are double type. I have made the following code but it does not continue ad...
asked by 28.06.2017 / 12:57
1
answer

Error in a for loop in jQuery

I have this Supersize Script <script type="text/javascript"> jQuery(function($){ $.supersized({ // Functionality slideshow : 1, // Slideshow on/off autoplay : 1, // Slideshow starts playing automatically start_slide : 1, //...
asked by 30.05.2017 / 11:34
2
answers

I need to use javascript call functions from an append

The question is this: I have a <div> (content) that when doing a HOVER send a javascript function to show other <div> hidden. Also, those <div> hidden when you click on them also make a function....
asked by 26.05.2017 / 23:12
2
answers

Synchronize Ajax

I have an application in which I download all the data when the user logs. I need some data to be downloaded in full to go to the beginning of the application, because if they are not recovered, there may be errors. Now I have Ajax in this...
asked by 27.05.2017 / 06:44
2
answers

Decimals point type for the input type number of HTML5

I have the following input: <input type="number" value="1.5" step="1" id="id_texto" /> Currently the value of the input shows me 1.5. But what I want is to show me 1.5. I want decimals to show it to me with a period, and not with a co...
asked by 10.06.2017 / 00:24