Questions tagged as 'jquery'

1
answer

Remove URL% 20 code

I created a php page and when I pass it via GET to another, it shows the + sign when saved in a cookie. This + is the encoding of the% 20 code. Does anyone know how to remove the% 20 from the url? > link: page.php? value =% 20my value code...
asked by 24.05.2018 / 00:39
1
answer

Ajax error in the form sending console

You are returning this error in the console when I submit a form with Ajax An invalid form control with name='' is not focusable. empresas_cadastrar.php:1 An invalid form control with name='bairro1' is not focusable. empresas_cadastrar.php:1 A...
asked by 10.05.2018 / 03:50
5
answers

Event is not tied to element

I have an event in jQuery (version 1.5) as follows: $('#refresh_abertos').click(function(){ // aqui o código irrelevante nesta pergunta }); It turns out that my #refresh_abertos element is only loaded later via ajax ,...
asked by 21.01.2014 / 14:25
3
answers

Why remove javascript function does not work?

I made a javascript function to delete table row when user presses button, but it is not working. (function($) { RemoveTableRow = function(handler) { var tr = $(handler).closest('tr'); tr.fadeOut(400, function(){ tr.remove();...
asked by 29.01.2018 / 19:25
2
answers

Problems with jquery masking and input

I'm trying to put a value inside a input that is masked both in typing and in the value entered. Well, I have a list of real estate listings in the database where I pull the front, okay? And not going into many specifications, whenever I...
asked by 02.07.2018 / 15:55
2
answers

How to page via querystring without reloading the page?

I make the list of products via a querystring as in the example: "{myite? pg = 1}" I saw that on the website of the American and Walmart they make a page similar to mine, but without reloading the rest of the page. How do I implement this...
asked by 02.03.2017 / 19:17
2
answers

How to reload page if user has returned in browser history

I have a problem, that when the user clicks the back button in the browser menu, it goes to the previous page, but it does not reload and maintain the old content. How can I reload it when this event happens?     
asked by 09.03.2017 / 18:29
2
answers

Modal display after form validation (filled fields)

I have a form with several fields that are required. When you click send, the validation is performed using jquery validation and being ok, it sends to the controller (ASP.Net MVC). I need to validate the form after the form validation, displ...
asked by 08.08.2018 / 18:12
1
answer

How to Filter Table through inputs and clicking a button?

I have a table with several columns and rows (populated with jquery), and I wanted to filter after clicking a button, and filter according to what is written in the input. How do you do that? I'm still learning. <!--------- CAMPOS P/...
asked by 18.10.2016 / 15:39
1
answer

Block submit if the verification in "real time" acknowledge that the email is already registered

I'm using AJAX and PHP to check in real time if the email is already registered in my DB, it shows a message in the DIV # response, whether the email already exists or not, so long. But if the email already exists it simply continues and accepts...
asked by 30.09.2016 / 21:55