Questions tagged as 'jquery'

0
answers

How to debug an ajax request for a laravel route?

I'm doing an AJAX request on a route, using laravel, as follows: $.ajax( { url: "../controle/pendentes/concluirVarias", type: "POST", data: { ids: arrayIds , _token: '{!! csrf_token() !!}' },...
asked by 09.10.2017 / 00:53
1
answer

How to organize pages with a table in Jquery

I have the following each that returns all records of clients inside a table, and that works perfectly: $.each(data, function(key,item) { id_cliente = item.id; nome_cliente = item.nome; data_nascimento_cliente = formataDataSQL(...
asked by 06.10.2017 / 14:28
0
answers

Posting with photo and view [closed]

Good morning guys, I'm having a question, I've done a scrapbook and would like to add a picture to the post and display it as the messages are displayed. My code is: <!DOCTYPE html> <html> <head> <meta chars...
asked by 27.10.2017 / 15:41
3
answers

dynamic change of css via jQuery Is it possible?

I have the following structure: var prop = new Array(); prop[0] = "margin : auto"; prop[1] = "padding : 5px"; prop[2] = "border : none"; ... $(elemento).css({ for(i=0; i< prop; i++) { /*Aqui vão serem feitos os laços do for e vão...
asked by 27.10.2017 / 17:00
0
answers

Jquery: Picking height () or width () does not work with many elements

I have a catalog that displays more than 400 products on the same page (it has to be this way) with two arrows showing the dimension (height and width) that takes the measurements of the image and applies an inline CSS with the same values, for...
asked by 04.10.2017 / 18:31
1
answer

Export sharepoint list to json using jquery

I'm using sharepoint and would like to know if you have any way to export the sharepoint list to json, ie make ajax     
asked by 30.10.2017 / 13:46
0
answers

slideShow with different time when increasing amount of images

I have jQuery below that is working very well. Except for one detail:% of% of is not correct: % is_% is lógica between one ideia and another is the same regardless of the quantity of tempo de transição . But,...
asked by 30.10.2017 / 12:44
0
answers

Jquery ajax load page in infinite loop

I have a button on a page that, when clicking it, performs the following code: Note: Whenever I click on this button it reloads a php page with data in html, the jquery scripts. But there comes a point where it loops in the jquery scripts sea...
asked by 06.10.2017 / 15:29
0
answers

Lock Maps api query to the outside

In this code below I make a query in the address and it returns me some data so far everything is ok. What I wanted to know is? If, like a customer, they enter an address in the United States returns me an "Area Not Allowed" message I want...
asked by 07.10.2017 / 22:47
1
answer

Add optin: how to do? [closed]

$( ".form-control" ).blur(function(){ calcular(); }); function calcular() { var soma = 0; $( ".form-control").each(function(indice, item){ var valor = parseFloat($(item).val()); console.log(valor); if (!isNaN(...
asked by 24.09.2017 / 22:26