Questions tagged as 'jquery'

1
answer

How to do pagination in CodeIgniter using AJAX?

I'm having a hard time finding a way to do paging using AJAX. I am accustomed to doing it both traditionally and directly with the server using Codeigniter as the application framework . However, this time I need it done without the refresh o...
asked by 24.12.2013 / 12:03
2
answers

How to save JSON file with Node.js

I want to make a website to test some things. The site is running on my home server made with Wamp. I was told I could make a small database using JSON files. I have a JSON file in the site folder that contains the following: [ {...
asked by 31.01.2014 / 01:57
2
answers

Check if the login exists in jQuery before sending the form

I need to develop a system in which when filling in the client's registry, be checked if the registered email already exists in the database, and if it already exists, that inform the user (via Ajax) that it already has this and -mail, and other...
asked by 25.07.2015 / 04:22
2
answers

Send javascript object to php

I have the following class in php: class Corretor { private $id; private $nome; private $registro; private $email; private $senha; function __construct() {} /* Getters e Setters*/ } And in my html code, I have...
asked by 11.03.2015 / 16:11
3
answers

How to get the child element

I want to get the value of the plan by clicking the button. html <div class="price-button"> <input type='hidden' name='plano' value='Plano Padrão' /> <button type="button" class="sel-plan" title="Selecionar">Selec...
asked by 16.03.2015 / 13:29
1
answer

Get values row table

I need to get the values for each row in my table. My table has no fixed number of rows and columns. I only want the values of inputs (within td ). The desired inputs have class quantidadeDigitada The ideal would be...
asked by 17.03.2015 / 18:50
1
answer

Starting with Vue.js with jQuery experience

I have experience with JavaScript and jQuery and after a few years I have decided to leave my comfort zone and know new horizons. I took a quick tour of the Angular until I got to Vue.js. Is there a question I would like to clarify with frien...
asked by 24.12.2016 / 13:49
3
answers

How to download file without backend [duplicate]

I want to force a file to be downloaded and I'm trying both ways. downloading on the same page: var docLocation = window.location.href + 'docs/apresentacao.pdf'; var iframe = $('<iframe src="' + docLocation + '" class="hidden">...
asked by 24.01.2017 / 17:32
2
answers

Get only one PHP variable from another page with Jquery

To get the contents of a page I use the date, but I would like to know how to get only one variable on another page. I use this code: jQuery(document).ready(function(){ jQuery('.teste').submit( function(){ var teste = $(thi...
asked by 31.10.2017 / 14:53
3
answers

Retrieve input file name and assign input text

I have the following code with a% text_type% and a file type. See: <form action="#" method="post" enctype="multipart/form-data"> Name file: <input type="text" name="name" id="name"><br/><br/> <inpu...
asked by 06.06.2017 / 21:20