Questions tagged as 'jquery'

2
answers

Problem with delay in jquery

The delay of this function in jquery is not catching, I wanted to know the reason, or another way to make a delay in it. $("header").delay(1000).css("display", "none"); $(".logo_1").delay(2000).css("display", "none");
asked by 10.04.2014 / 19:54
5
answers

Disable Save Password in Chrome in JavaScript

Would there be any way to disable the password saving option in Google Chrome, by JavaScript or jQuery? I mean the login password. When my client logs in he appears the option to save the password, and after he has enabled it, he always logs...
asked by 27.03.2014 / 16:13
2
answers

How to avoid conflict between jQuery and Mootools

What good practices to avoid conflicts between the jQuery and Mootools libraries? This example gives the error Uncaught TypeError: Object [object Object] has no method 'fade' //codigo Mootools $('sobreCamada').fade('in'); //codi...
asked by 21.12.2013 / 00:46
2
answers

How do I do an action after three dynamic elements are populated with jQuery / javascript?

I have three select that are created after the user clicks a button, ie they are dynamic: <select id="cbExercicio"><option value="0"></option></select> <select id="cbEquipe"><option value="0"></option>...
asked by 27.01.2014 / 16:08
2
answers

How to effect cascade with Javascript / jQuery?

Imagine that I have a list of 20 <li> blocks, and that when the page loads, each of them should be shown with a millisecond difference from one to another (this would be done with CSS3 , so code just have to add a class in the...
asked by 06.04.2014 / 00:38
4
answers

How to sort three divs according to an attribute of it?

I have 3 divs: <div id='pai'> <div class='produtos' contagem='2'></div> <div class='produtos' contagem='1'></div> <div class='produtos' contagem='3'></div> </div> I would like to s...
asked by 09.01.2015 / 17:10
3
answers

How to get only the second class with Jquery?

<td> <input type="radio" value="5" name="Form1a1" class="abobrinha Form1comentarioA" /> </td> I have 2 classes inside in my input radio, in jQuery I would like to select only the last class (which in my case is the second...
asked by 15.07.2015 / 20:41
3
answers

Does jQuery influence the performance of the application?

I personally love and use the jQuery library. Does this library influence the performance of the application?     
asked by 11.03.2015 / 22:44
7
answers

Split () integer with Javascript

Valor = 19.90; MyArray = valor.split("."); The code hangs, integer variable, however, Valor = "19.90"; MyArray = valor.split("."); alert(MyArray[0]) = 19; alert(MyArray[1]) = 90; I would like to know how to use the split int variable,...
asked by 21.03.2014 / 16:41
4
answers

Can you reduce this script without losing functionality?

<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.min.js"></script><script>$("div#contenthead div.left span").hover(function() { $("div#contenthead div.topmenu").addClass("displayblock");}); $("div#con...
asked by 11.11.2015 / 16:41