Questions tagged as 'jquery'

1
answer

Generate a table in jquery and insert data

Good, I generate a form in a modal window and now I want its content to be reflected. I had thought of showing it in a table, but I really do not know how to generate it and say how and where to insert each value of the previous form. But...
asked by 28.12.2017 / 11:32
2
answers

how to generate divs with css Skew and images inside

Hi, I'm wanting to put together a gallery like the example page that I attached guide page where TOURNAMENTS says it's a carousel and it has images in diagonal with hovers, put together a small example but I can not make the images go straight...
asked by 15.12.2017 / 18:19
2
answers

Problem sending data with $ .ajax ()

Thanks in advance to all who can help me with this doubt. I'm just starting with JQUERY and I'm trying to make a form that should do some calculations based on data that returns a db with a query in external file in php. Based on everything I ha...
asked by 04.12.2017 / 20:05
1
answer

Get the time with jquery

I have the following code, with this I can add a class (today) in a div. Now what I need is to be able to do the following, 18:00 - 20:00 I want to be able to calculate that if the time range is not between 18:00 y 20:00 , add a text...
asked by 06.12.2017 / 09:38
2
answers

How can I apply color to a second column if the condition is APPROVED or REJECTED?

introducir el código aquí <style type="text/css" rel="stylesheet"> .APROBADO{ background-color: red; } .RECHAZADO{ background-color: red; } </style> function cargaPagina(pagina) { var desde = pag...
asked by 03.11.2017 / 21:44
2
answers

Change radio check when clicking on an associated item

I need that when I click on the a tag the radio will check. I did a function to do it and it does it well, the problem is that if I want to check another one that I had already checked, it does not do it anymore. I need the tags in that o...
asked by 01.11.2017 / 15:54
1
answer

perform an if of transform: translate3d

I have to perform a functionality to a carousel plugin. How do I write an if that detects if a div has the style "transform" less than "translate3d (-650px, 0, 0)". Maybe it's with javascript or jquery. <div class="owl-stage" style="transfo...
asked by 21.11.2017 / 13:19
1
answer

Send array via Ajax

I need to send an array using an ajax call. $.ajax({ type: "GET", crossDomain: true, dataType: "json", url: "http://localhost:24234/api/SendPushNotification", success: { Function(result) { Console.log(re...
asked by 23.11.2017 / 14:21
2
answers

How to pass the content of a variable from one if (add) to another variable of another if (load)?

Pass the contents of a variable from one if () to another if (). in jquery My question is how to do that, here I leave a bit of code to make my question clearer. (function ($) { this.each(function () { var easyTree = $(this); //desde aqui co...
asked by 14.11.2017 / 14:57
1
answer

Filtering with JQuery

I have this statement in JQuery to filter JSON data var datos = $(Data).filter(function (index, value) { return value.Apellido == Apellido; }); Where Data is my data concentrate, I want to filter those with a last name X,...
asked by 06.11.2017 / 16:45