Posts by marcelo_faria • 37 points
5 posts
-
0
votes1
answer64
viewsA: Clear input and insert new value into it
Solved by changing var plan = $(".form_union_plans:last"). val(); by var plan = $(".Rule-Choose-plan-doctor:last"). val(); Before each click was taking the whole value of form_union_plans and…
-
0
votes1
answer64
viewsQ: Clear input and insert new value into it
The combobox highlighted in red when selected triggers an action in jquery to take values from other inputs and add them to the input in blue (Hidden type, but this text for you to see what is…
-
0
votes1
answer28
viewsQ: Add jquery line without changing previous value
I have an Row with four inputs according to the image, which when clicking the button is added a new line. The problem is that at each insertion the value of select returns to the value of the first…
-
-1
votes1
answer199
viewsQ: Return javascript function within another function
I am making a call via ajax and returning an array. Using the.log console I see the result of the query. But what I need to call this result inside another google Chart function quantityDaySurgeries…
javascriptasked marcelo_faria 37 -
1
votes0
answers70
viewsQ: Check empty mysql column
I’m having trouble checking which columns are empty on mysql. I’m using the COALESCE but it only checks the first column of the sequence: COALESCE(column1, column2, column3...) AS values If column1…