Posts by miguel_ao • 76 points
3 posts
-
2
votes2
answers110
viewsA: Jquery - Identify automatic text
This problem of autocomplete is a little complicated to solve because it varies from browser to browser and also in different versions of these. Chrome for example does not indicate that you are…
-
0
votes1
answer36
viewsA: Tremble/ Shaking when I do Hover in H4
To solve your problem add the following code to the H4: #films .gallery h4{ margin: 0; top: 50%; left: 50%; -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); font-family: "open…
-
1
votes2
answers3778
viewsA: Add element after element with jQuery
One of the solutions will be to use the function .append() jquery. Example with your code: $('.social-link').append('<li class="icon-facebook"><a target="_blank"…