Posts by Azzi • 182 points
12 posts
-
0
votes1
answer36
viewsA: How to set the google maps display by a form?
I did exactly that on a customer registration form, follow what I did that will work out all right READ JAVASCRIPT COMMENTS function initMap() { var map = new…
-
1
votes1
answer581
viewsA: Input with monetary mask jQuery Mask plugin from Igor Escobar
It may not be the best solution, but the easiest way to solve it now would be this method, maybe if you searched better in the documentation should contain a solution to this problem with some…
-
0
votes1
answer103
viewsA: Reload only one DIV with Javascript
Try incrementing this in your code, only instead of leaving the execution of function myFunction() in a button, leaves in the onload of body. function myFunction() { setInterval(function(){…
-
1
votes1
answer34
viewsA: Pass as parameter a screen field
As you can see I took the value entered in the date field and put as link. The way I did was by focusout(), but you can do by N events. What I recommend is by keycode and focusout() To see the link,…
-
0
votes1
answer49
viewsA: opening direction of the select
It is possible to make the size of the select be changed by displaying the items (you must specify the quantity), for this you must use the attribute size=", so for example: <select name="setor"…
html-selectanswered Azzi 182 -
2
votes1
answer129
viewsA: How to change the value of an attribute within a`TD` using jquery?
That’s basically what I committed, with attr() it worked var saldo = 10; $(".saldo").click(function(e){ e.preventDefault(); $(this).closest('tr').find('td[data-saldo]').html("10.00");//setando o…
-
4
votes7
answers16899
viewsA: How to create a <select> with images in the options?
A much simpler way would be to use the jQuery Library: $(function () { $.widget( "custom.iconselectmenu", $.ui.selectmenu, { _renderItem: function( ul, item ) { var li = $( "<li>" ), wrapper =…
-
0
votes1
answer101
viewsA: problem by "highlight" selected row with click and checkbox
I made this way and it worked here, now if you want to make the validations for when the check is not scheduled can already do, it’s all right, I hope to have helped $("#table-body…
-
0
votes1
answer81
viewsA: Login enters directly via google
Here you are doing a validation that if Google data is validated and returns 1 goes to the telaInicial.php( window.location.href = "http://calangoeventos.eu5.net/telas/telaInicial.php") Do the…
-
0
votes1
answer29
viewsA: Because when the button is pressed the text of the first field does not go to the second?
Simple, basically not textContent, but value <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8s"> <meta name="viewport" content="width=device-width,…
javascriptanswered Azzi 182 -
0
votes2
answers421
viewsA: Need to leave an image with link in the bottom right corner
Well, this function will identify whether it is mobile or not, in case it is mobile you add everything you find necessary by javascript. Source: Stackoverflow - Identify device function…
-
1
votes1
answer94
viewsA: Button does not send form and/or run javascript
From what I saw you didn’t perform any function you created. You gave a name to the function, so it will only perform if it is called, for example: Formulario(); RegistrarProcesso(); You also put…