I need a function, or some plugin that simulates typing, that is to say that it has a cursor, and that it is typing and deleting words;
One site I found by example was este.
(The typing effect on the banner).
But I could not find in...
Can you keep the order of items that came in JSON of a API ?
This is how it comes from API :
{"6":"Abadia","218":"Abel Reis","44":"Alexandre Campos - Jardim","13":"Alfredo Freire I","174":"Alfredo Freire II","186":...
We know that if I have two objects created in different variables, but with the same content, when comparing, javascript will return false.
Example
var objA = {a:'teste'}
var objB = {a:'teste'}
if (objA === objB) {...} // return false
if...
I've always put the scripts and links to the CSS at the top of the document in the head of the document. Now I realize that there is another concept in which the calls to scripts and CSS are at the bottom of the document html , in the last...
The program has some customer data in the session, such as the CPF and Full Address (including the state where you live).
If the client is from São Paulo, it enables a specific combo, if it is from another state, it does not enable it. In that c...
I know that it is possible to create a directive in AngularJS in the following ways:
<div angular></div>
<div class="angular"></div>
<angular></angular>
<!-- directive: angular -->
But what is the b...
I wanted to make js (jQuery) work with the interface below:
I'musingtheCSSFoundationframeworktodevelopthisproject.However,IdonotknowhowtomakeacloneusingjQueryfromthiscombowheretheinputsare.ActuallyIwantthemomenttheuserclicksonitmoredynamicallyad...
Continuing with this question
The problem is that there are numbers in my variable, that is, I am not able to get the values above 1073741824 and I wanted to get in 562949953421312 according to my last question.
Are there a...
I have a button that when clicking on it the screen is full screen (it does the same thing as f11).
But when I click the button again, it does not leave the screen full screen.
I need to click on the button the screen is full, but if I cli...
This question may seem simple, but I can not find a quality answer. I have an arrow icon and when I click on it, I want it to turn 180 degrees. The code I started using was this:
$('.arrow').click(function() {
$('.rodar').toggleClas...