Questions tagged as 'jquery'

1
answer

Heatmap in Javascript or Jquery

I am looking for a plugin or some code, in which I have an array with prices, and paint a table with a color from green to red, depending on the cheapest and most expensive prices. The colors would not be degraded in the table, but would depend...
asked by 28.09.2018 / 08:58
3
answers

How to show an alert to an ul tag that is disabled, jquery?

By having the tag disabled in the following way: <ul class="lista_productos_elegir3" style="max-height: 55vh; overflow: scroll;" disabled="disabled"></ul> Then I want to show an alert when they click on the disabled tag, indicat...
asked by 27.09.2018 / 21:54
2
answers

Add the value of several select in a table with php

I have the following table: With the following code: <table> <thead> <tr> <th> Lunes </th> <th> Martes </th> <th> Miercoles </th>...
asked by 16.08.2018 / 00:40
2
answers

How to generate an event by clicking on a checkbox with javascript?

I have the following code, what it does is add variables and place the final result in an input, now what I want is that when you click on a checkbox, add 5 to the total result and update the input with the new value , and if I click again on th...
asked by 11.09.2018 / 05:37
1
answer

How to correctly condition the coordinates of an HTML element with mousemove in JavaScript?

What I need in particular is to obtain the coordinates of a div to be able to condition them (correctly), as for example with a new event. Now ... the problem is that I have solved it up to that point, the issue is that when running the e...
asked by 19.08.2018 / 17:49
3
answers

Modify all ids that contain certain text within their name

I have a table where each of your td elements have an id in this format: <td id="random123random"></td> where "random" can be anything (albeit of the same length) and the only thing that certain ids have in common is the number...
asked by 18.10.2016 / 00:38
3
answers

Dynamically create 2 self-excluding check boxes for each row of a table

I have two columns with checkboxes that are created when linking the records of an SQL table, as id of the checkboxs I assign them the id of the record to identify them in a more individual way, what I am doing is validating that only a checkbox...
asked by 22.07.2018 / 20:23
2
answers

Management of decimals in jquery datatable

How can I add decimals to the columns of my DataTable? For example, I want to show 0.00. My code jQuery('#cuentas').DataTable( { data: datos.data, "columns": [ { "data": "codProducto" },...
asked by 26.07.2018 / 18:41
3
answers

Why does my ajax not detect information?

I have this problem, I am doing a login and a register but when I try to verify if the data is being sent by means of a alert(); the information is not being sent. Code <!DOCTYPE html> <html lang="es"> <head&...
asked by 25.07.2018 / 21:24
2
answers

How to pass 2 variables through AJAX to another PHP

Well what I want to do is send 2 variables js with value of an input by AJAX to a file that receives them, for example: $ _POST ['idReceptor']. If you sent a single variable it is sent well but I can not send 2. var idEmisor = $("#idEmisor").v...
asked by 05.11.2018 / 21:27