Posts by Rodrigo Garbin • 66 points
4 posts
-
0
votes2
answers649
viewsA: Why css is not working
Test this code, maybe you’ll have to adjust the margins a little bit to stay exactly where you want the elements, but basically that’s it. Organize your HTML elements a little better and it will be…
-
1
votes1
answer333
viewsA: How to disable Jquery controls when loading the page
You can do it that way $(document).ready(function(){ $('#chkContaProvisoria').click(function () { desabilitaTextBox(); }); //chama a função apos o carregamento da pagina, //se o checkbox estiver…
jqueryanswered Rodrigo Garbin 66 -
3
votes2
answers374
viewsA: Select and view data with Ajax
You can call the ajax when you change the city field, if you already bring the filled city field you can call the ajax when you finish loading the page. To call when it changes... $(function() {…
-
1
votes4
answers9024
viewsA: How to make the 'focusout' event an input?
You can do it this way... <label for="pesquisar">Buscar</label> <input type="text" id="pesquisar"> and javascript like this... $(document).ready(function(){…