Posts by InfoAssef • 91 points
4 posts
-
5
votes8
answers44013
viewsA: How to remove auto complete input from google Chrome?
I tried many alternatives and arrived at this: Usually autocomplete="off" or autocomplete="on" So I put autocomplete="no" Worked.
-
0
votes3
answers7594
viewsA: How to align content in <td>?
Make a style for this table type table tr{ text-align: center; }
-
1
votes1
answer1836
viewsA: How to open new tab without blocking pop-up after windows.open()?
I did it in a way using attr, due to the lock of the window.open see: $(document).on('click', '#sus-div-que-abraca-o-item > div', function() { var campoRadio =…
-
3
votes8
answers95476
viewsA: How to check with jQuery if there is a checkbox checked?
function validaTermo() { var checado = $("#termo").is(':checked') if(checado == true){ //checado } console.log(checado); } …