Questions tagged as 'jquery'

1
answer

Two Ajax requests in the same function

When loading a page, I have two Ajax requests in a sequence that populate two select's with the options that come from different tables in the database. But only the first one is executed, the second does not even call. I've followed debuggin...
asked by 02.08.2018 / 17:32
0
answers

Dynamize HTML with JQUERY [closed]

Hello, I'm having trouble with a JS activity, I should make the last posting to be displayed first, I already tried sort, tried sort with function and nothing solves, I can change the order of objects in the array more I can not change the order...
asked by 26.07.2018 / 18:18
0
answers

Javascript - Remove the click event of a button

Good people, I have the following problem: As the following image shows, I have a set of buttons to fast-forward and rewind the process sequence. However,exactlyinthispart,Ineedtoclickonbotãonextpageexpectsxsegundosbeforemovingforward.Iha...
asked by 10.09.2018 / 19:32
0
answers

Put Progressbar inside a cell JQGRID

How do I put Progressbar within the last column according to Time Traveled? vargrid1=$("#jqGridRiscoAcao").jqGrid({ url: '/Qualidade/RiscoAcao/Listar', datatype: 'json', mtype: 'GET', postData: { IdRisco:...
asked by 20.07.2018 / 21:23
0
answers

Jquery-Send Post to save to database

I'm developing a site that takes data from a certain location and when I click the button it has to save somewhere else and for this I'm using Jquery but I'm not able to save it to my bank. Someone can help me. code that after the content $...
asked by 16.07.2018 / 17:35
0
answers

Fullcalendar can not make the call

Good evening everyone is using the template limtless in my application laravel but I can not use the part of Fullcalendar I'm trying to use this calendar: Internationalization but I can not call it in code type: var calen = new fullcalenda...
asked by 18.07.2018 / 03:48
1
answer

Show hide / show menu

I'm having a question I'm using Wordpress This is my jquery to get the link that I am clicking and through an anchor ID # it scrolls down to the desired content but I need to hide everything and when clicking only appears the content clic...
asked by 18.07.2018 / 17:17
1
answer

JavaScript - window.innerHeight - Safari Browser

The window.innerHeight does not work in the Safari browser. When I scroll on the page and the element arrives at a certain place on the page, it adds a class to HTML, in all other browsers that code works. However in Safari I could not make t...
asked by 26.08.2018 / 22:57
1
answer

I can not execute the jquerry loop

I need to create a loop for msm to feed a graph. while($(".previsto").eq(0).text(),){} I need to get these values eq (0), eq (1), eq (2) ... $(".previsto").eq(0).text(), $(".previsto").eq(1).text(), $(".previsto").eq(2).text(), ...   ...
asked by 27.08.2018 / 21:21
2
answers

Function does not recognize checkbox.checked

I have the following function: function alteraSaldo(item){ saldo = parseInt($('#saldo').val()); campo = $('#'+item); if (campo.checked == true){ alert('sim'); saldo = saldo - parseInt(campo.data("valor")); }else{ alert('nao');...
asked by 04.08.2018 / 17:08