Questions tagged as 'jquery'

1
answer

Doubt about css or jquery Menu

I'm doing a full-screen menu. I have a menu that when I hover over a link I show an extra descriptive text. The problem is that I'm doing it by css and when I do hover it makes me hover in all the elements of the menu and it shows me all the tex...
asked by 14.02.2017 / 20:11
1
answer

Error loading Bootstrap Toggle Button in Table

I have a table with Toggle buttons The code in the table is as follows: $('#table').DataTable({ "destroy": true, "responsive": true, "processing": true, "serverSide": true,...
asked by 16.11.2016 / 04:54
2
answers

Autocomplete [jquery] does not show data

I have the following problem, I have two fields to autocomplete (group name and number of the same) and the logical part works correctly but it does not show me the coincidences, as you can see the values appear in the console, but not in the pa...
asked by 15.11.2016 / 20:52
2
answers

Problems with Div when reloading jquery

My problem is simple, the solution is not for me. I have an operation in my JS which I do: $(document).ready(function () { $('.botonEliminar').click(function (e) { e.preventDefault(); var fila = $(this).parents('tr'); var id = fi...
asked by 02.11.2016 / 16:28
2
answers

Pass jQuery variable value to an input

I have this function in jQuery <script type="text/javascript"> $(document).on("ready", function () { $("#area_tabla table tr td").click(function () { var celda = $(this); alert(celda.html());...
asked by 07.12.2016 / 18:06
1
answer

What is the unit of measure that returns width and height in a jquery image?

I'm working with obtaining the height and width of an image size I start from an image that I know what its sizes are width 2160px high 3840px My code in javacript //Quitamos el ancho y alto que tiene en el navegador para...
asked by 06.12.2016 / 21:16
1
answer

I do an autosum of fields, but it does not show the value in textbox

What can be wrong in my function? $(function() { $('#sumAll').Keydown(function() { var add = 0; $('.cl').each(function() { add += Number($(this).val()); }); $('#sumAll').text(+ add); }); }); <script...
asked by 03.11.2016 / 15:17
2
answers

How can I traverse an html table as if it were a coordinate table?

My problem is this, I'm trying to insert some values into a database (dynamic) html with editable fields, I already have the function that inserts, but my problem is how to relate the value that I place in the table with what I want through a jq...
asked by 07.11.2016 / 22:04
1
answer

Loop from X to Y specified by the user

I want to make a cycle that prints the numbers of the range specified by the user, for example: for the values: 2 and 10, it is printed on the div: 2,3,4,5,6,7,8,9, 10. function loopChecking() { 'use strict'; var numberA = document...
asked by 28.11.2017 / 12:06
1
answer

How to serialize an array in JQuery with the same PHP schema?

way to serialize an array in PHP $value = array(array('Nombre','Adam'),array('Nombre','Exael')); echo serialize($value); /*a:2:{i:0;a:2:{i:0;s:6:"Nombre";i:1;s:4:"Adam";}i:1;a:2:{i:0;s:6:"Nombre";i:1;s:5:"Exael";}} */ Now I need to serializ...
asked by 24.10.2016 / 20:22