Posts by Carmona007 • 51 points
9 posts
-
-1
votes1
answer26
viewsQ: Automatically add as typed
I have 3 fields (a,b,c) that I need to add and play the value in the field (d) as it is being typed, but I can’t do without clicking or typing anything else after the last number. I tried to use the…
javascriptasked Carmona007 51 -
-2
votes4
answers921
viewsA: Insert fixed text in Textarea
I thought about the placeholder, only that the text cannot disappear, the user has to type below it.
aspanswered Carmona007 51 -
0
votes4
answers921
viewsQ: Insert fixed text in Textarea
I am making a form on an ASP3 page that has to bring a fixed text in Textarea. This text cannot be changed and the user type below it has to save in the database without this fixed text. Someone’s…
aspasked Carmona007 51 -
1
votes2
answers247
viewsQ: Send Dropdown Value to Iframe
How do I send a value from a Drop Down to a [IFRAME]? I’m reclaiming the value like this: function mandaIframe() { pai = parent.document.form1; // especifica o elemento de id="formularioX", dentro…
-
2
votes1
answer286
viewsQ: Food Field Hidden via Jquery
How do I send a value to a Hidden field via Jquery? I need to send him an array position.
jqueryasked Carmona007 51 -
2
votes1
answer71
viewsQ: How to Recreate an Array with new values
How do I take an array in Jquery that has for example 3 numeric values and recreate it with 3 new values?
-
0
votes2
answers124
viewsA: How to Change Ifs to For
I did it this way below. Only now I can’t get him to show again. I’m stuck here now. $('.select').on('change', function(e) { var _select = this; var select = $(this); var valor = select.val(); var…
-
0
votes3
answers3586
viewsA: It is possible to assign the value of a Javascript variable to an ASP
Try passing the value of the JS variable by Innerhtml to an Hidden field and then recover in ASP by Request. Here’s an example of what it would be like: 'Mandando o valor da variavel por JS:…
-
0
votes2
answers124
viewsQ: How to Change Ifs to For
I have 3 dropdown’s with equal values (0.1, 2 and 3). Where 0 is 'Select a collaborator' 1 is 'Fábia' 2 is 'Helio' 3 is 'Sueli' I have to select a value on one dropdown and disappear from the…