Questions tagged as 'jquery'

0
answers

Aurelia - Use / Import .js files

Good morning, this may be a stupid question, but I honestly can not find anything on the internet. I would like to know how I include my .js files in a project using aurelia, the situation is as follows: I have a template created here, whi...
asked by 06.02.2017 / 13:43
1
answer

How to set the speed of toggleClass (jquery)?

I would like to set the animation speed of toggleClass but it did not work. I solved the problem with CSS : -webkit-transition: all .5s ease; transition: all .5s ease; However, I would like to know what it would look like jQ...
asked by 04.02.2017 / 16:32
0
answers

How to work with dynamic form in jquery?

I would like to know how I can work simply with this dynamic form, the type comes from the database via jquery and ajax and appears on the screen as a form for the user to select their request. As you can see in my code only the input of the tab...
asked by 05.02.2017 / 21:08
2
answers

Undefined index: action when sending data from ajax to PHP

I'm having trouble sending my ajax parameters to PHP, giving me the error Undefined index: action in my logar.php file My ajax takes the user and password of the form in html and sends it to the file logar.php, in this file I instantiate the...
asked by 06.02.2017 / 01:36
0
answers

load records without expanding the table!

Good morning! I have a table with 9000 records, what happens is that when opening the page of the table it takes to load the records with this it extends showing all the 9000 scans, so after a while it decreases showing only 10 lines of course s...
asked by 20.01.2017 / 16:23
1
answer

How do I get the images that are returning and transform into a gallery?

I'm using a mixture of WordPress plugin with PHP code to be able to perform a task that is to join all the images of a certain post in a gallery. I would like, in this code below, to know how I could play all the images returned in a gallery...
asked by 24.12.2016 / 18:31
0
answers

Error loading partialView

I have a somewhat curious problem. I created a page that lists records and it has two links, one to delete and one to display details. Both call a modal. Each modal is a partialView . The partialview that displays the delete mode is...
asked by 25.12.2016 / 20:44
0
answers

Access a query string and add the value to an input coming from an iframe

I have a page that contains an iframe with a form, I would like to be able to access a query string from the main page and add that value to an input hidden in the iframe. Is it possible? Thank you     
asked by 19.12.2016 / 13:59
0
answers

How to perform subquery with autocomplete

Query code: $parametro = (isset($_GET['parametro'])) ? $_GET['parametro'] : ''; if($acao == 'consulta'): $sql = "SELECT codigo,preco FROM produtos "; $sql .= "WHERE descricao LIKE ? LIMIT 1"; try{ $query_select = $conecta->prepare($sq...
asked by 19.12.2016 / 18:24
1
answer

jQuery adds class but does not remove

I am using this code to add a class to leave a fixed menu. Problem is, she's not removing the class later. How to proceed? $(window).on('scroll', function() { if ($(this).scrollTop() >= $('nav').offset().top) { $('nav:not(.fixo)').add...
asked by 07.01.2017 / 20:17