Questions tagged as 'jquery'

0
answers

How to get the Controller VRaptor Result with Jquery?

I have a controller. NewsletterController.java @Controller public class NewsletterController{ @Inject private Result result; @Post("/gravarEmail") public void gravarEmail(String email){ String me...
asked by 08.03.2016 / 21:46
1
answer

Enable Field of a given table row via a button with JQuery

I am doubtful for this system in Jquery , The idea is to click EDITAR on a particular line to only activate the inputs of that particular line of edit clicked. There are also two Edit Privilege, ADM e NORMAL...
asked by 13.03.2016 / 17:40
0
answers

Send data to a controller via jquery with no return

I'm working on a project in Laravel. In a certain part I need to send data to a controller via jquery and from the data obtained in the controller, redirect to another view. How can I do this? I usually use Ajax, but with it I think there's no w...
asked by 07.04.2016 / 18:52
1
answer

Popular a Chart.js with ajax.get

Speak, I have a question here in my project. I have a chart that looks like this: And I want it popular with the data of a webservice in PHP, which will return a JSON and in every button it clicks, I make a new request. Knowing that the me...
asked by 07.03.2016 / 21:56
1
answer

Div fixed hide when arriving in another div

Hello, I'm trying to implement this idea in my project: link function removerSetas() { var topo = $(window).scrollTop(), alvo = $("#alvo").offset().top, setas = $(".left, .right"); if ( topo > alvo ) { setas...
asked by 05.03.2016 / 19:36
1
answer

Div with hide and iframe inside, however link does not open

When you enter the site , you will see that you will have a div by following the mouse, and the content of it is an iframe. When they click on this div or the image of the iframe, they disappear, however, the main objective is to click on the l...
asked by 07.03.2016 / 06:32
1
answer

Show feed news rss one at a time with fade

I have the following php code to fetch the news feed from a particular site: <?php $rss = new DOMDocument(); $rss->load('http://feeds.jn.pt/JN-ULTIMAS'); $feed = array(); foreach ($rss->getElementsByTagName('item') as...
asked by 14.03.2016 / 15:57
1
answer

problem with window.onresize ()

I'm creating a responsive dropdown menu using the same html structure (without creating a structure larger than 1024 and one less than 1024), by clicking on the dropdown menu icon ul ul appears, but if I leave the open menu smaller than 1024 and...
asked by 14.03.2016 / 19:25
1
answer

How to enable tooltip in inputs?

I have the following Tooltip: $(document).ready(function() { //Tooltips $(".tip_trigger").hover(function(){ tip = $(this).find('.tip'); tip.show(); //Show tooltip }, function() { tip.hide(); //Hide tooltip }).mousemo...
asked by 29.02.2016 / 19:51
0
answers

Fill CAPTCHA field via CURL PHP with "Submit in Javascript"

How do I fill a field of a page in cURL which does not send the data via form, but via Javascript? The page in question is this: <script type='text/javascript' src='js/juridico.js'></script> <script type='text/javascript' src...
asked by 19.02.2016 / 18:11