Questions tagged as 'jquery'

3
answers

Display data between a range of dates using Highcharts in Wordpress

I edit the question: I'm using HighCharts in WordPress to show data from a DB MySql . I want to show data between a range of dates selected by the user In the HighCharts code, in the data section I do not hav...
asked by 06.06.2017 / 21:31
1
answer

Infinite Scroll, insert content when I get up

I'm trying to perform a test to make my web with infinite scroll, and upload content as it scrolls down. It happens to me that with the method that I see everywhere, I insert the line when I arrive at the top, I mean I have to go down (it does n...
asked by 09.06.2018 / 10:51
1
answer

How do I know which date range I am in?

I have a calendar made with the fullcalendar , I would like to know if there is an event that helps me to detect in what date range I am, that this event is executed every time I change the date, or if I click on the list of "week", "month...
asked by 10.03.2017 / 22:48
2
answers

I have problems recovering an array in jQuery from Ajax

I have the following code in jQuery: $("#Eng").click(function(evento){ alert ("Entro en cambio idioma."); //elimino el comportamiento por defecto del enlace evento.preventDefault(); $.ajax({ type: 'GET', url: 'FAjax.php',...
asked by 09.03.2017 / 21:15
1
answer

Create canvas with ID according to array

I have the following code and then in a function out of all these functions I want to do a getElementById, but the created canvases do not have ID, they told me that I should add it to id inside the function per, but I'm disoriented, if someone...
asked by 04.05.2017 / 15:31
1
answer

Uncaught TypeError: Can not read property 'length' of undefined [json, ajax and DataTables]

I can not show the data in my table. With the following index I send the data of my table by json: public function index(Request $request) { if ($request->ajax()) { $modelos = Modelos::all(); return response()->...
asked by 27.04.2017 / 23:22
1
answer

How to handle the scroll not of the Body but of a Div

The question is how do I manipulate the scroll of a div ???; taking into account that this is modals and use fixed to cover the entire screen and all content that covers * $(document).ready(function(){ $('.see').click(function(e){...
asked by 26.04.2017 / 00:10
1
answer

how to create a switch case within a path in DATATABLES?

I'm painting the data brought from the database in datatables , the problem is that I need to validate a data to be able to paint a badge in the GUI , and I look for the way to do with a switch since if I use a if...
asked by 26.04.2017 / 16:21
1
answer

Implement DataTables.net

I am implementing DataTables.net but it is not doing the paging, I am working with ASP.NET MVC 5, the code I handle is as follows. @{ ViewBag.Title = "Proveedor"; } <h2>Proveedor</h2> <html xmlns="http://www.w3.org/1999/xhtml"&...
asked by 14.02.2017 / 19:39
1
answer

Validate input with jQuery and regular expressions

I am working with ASP.NET MVC5, and trying to validate an input with jQuery and regular expressions. What I'm trying to do is input only letters including 'ñ' and vowels with tilde. Code: $('#RazonSocial').on('keypress', function (e)...
asked by 20.01.2017 / 04:16