Posts by Ana Teixeira • 107 points
8 posts
-
3
votes2
answers83
viewsA: How do I change a second fixed image by hovering over the first image?
I’m not sure I quite understand the question :/ You want to have two separate images and the mouseover in an image change the second image? If so you have to in events instead of using this. use a…
-
-1
votes2
answers55
viewsA: Dropdown closes every click
#userlist is a select? If you give him the parameter Multiple, it Works ;) example <select multiple > <option value="" disabled selected>Choose your country</option> <option…
-
0
votes2
answers105
viewsA: How do I get my jQuery to scroll through this table correctly?
The text you want is on a line you are not traversing :/ with the instruction table tbody tr:gt(4) you are starting with the row that has nothing in the first column due to colspan, if you start…
-
1
votes2
answers230
viewsA: Query returns "Invalid column name 'result'. " where 'result' is a column generated by select (SQL SERVER)
You cannot use Alias Names from the query itself in the Where clause, so you need to use an auxiliary query so that the result becomes the same column name, as placed by @Sorack. Or in the Where…
-
0
votes2
answers35
viewsA: Create a grouped query by month
Good morning. It seems to me that if you want to group by the two variables you must have them in the group by and have them as a pillar in select, might be something like: SELECT…
-
1
votes4
answers209
viewsA: count equal text from php database
) It seems to me that the query does not agree with the following ifs, because the columns were aliased instead of keeping the column as "classification" and values "green", "yellow", "red". select…
-
1
votes1
answer26
viewsA: Value substitution
I’m not sure I understand the problem, but the instruction: dataSales.series[0] = myObj; doesn’t work? If you want to add instead of replace you can also use push: dataSales.series.push(myObj);…
javascriptanswered Ana Teixeira 107 -
1
votes1
answer35
viewsA: Content overlaid on the page
Hello! I cannot see the descriptive image of the problem, however it seems to me that there are some things missing, namely: Divs close in php <div align='start'> <div class='card mx-auto…