Posts by Abner Simões • 61 points
7 posts
-
1
votes4
answers486
viewsA: Replace a specific character in a <input type="text">
Speaks Young , beauty? Use . each and index .. I think it works well :) function charValidation(){ $(".area-input input").each(function( index ) { var str = $(this).val(); if(str.indexOf("'") != -1…
-
2
votes3
answers236
viewsA: Check if array contains specific character
Fala Pessoal :) Just by adding here a way to do with jquery, it also uses regular expression, but can help a lot in the task of not creating a new Array 0/ var teste = ['Escova|Corte…
-
1
votes1
answer81
viewsA: Javascript button on Animate CC
Fala Amigo, I believe you can do the validation differently. Currently your validation is being done through the contactor, with this you have no control of the button clicked, right? What you can…
javascriptanswered Abner Simões 61 -
1
votes3
answers849
viewsA: How to make a flex container have the width of internal Ivs?
Erickv , I did some tests using the code you made available and only managed to set a value to the width(width) of group 1, in short when the second column of group 1 is created the width does not…
-
0
votes2
answers52
viewsA: Do internal links help Google rank?
No doubt if your internal link building is well done it will help your SEO, however I can’t tell you that it will help you rank better. I believe that it will be a natural consequence of better…
-
0
votes2
answers502
viewsA: Iframe from external site
I believe you can use a Text Highlighter plugin to find the word, and after that add a click event. Here is a site with the list of plugins that can assist you in the task. Site with the list of…
-
1
votes4
answers86
viewsA: Hiding div by jQuery
I believe the best alternative is really one of the ones Randrade mentioned $('#btnFiltros').click(function () { if ($('#divFiltros').css('visibility') === 'visible') {…