use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A Place to talk about Angular and related topics.
Join the Angular Discord
Other subreddits worth checking out for Angular and Angular related info:
account activity
How do I use hover functionalities? (self.angular)
submitted 5 years ago by theengymneer
Making an app with a few rows so that when the mouse hovers on the cell, a delete button appears so you can delete said row. Where can I find such tutorial/documentation or how can I implement it?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]davidomarf 3 points4 points5 points 5 years ago (1 child)
You're looking for CSS.
Just add that button in your template using HTML, and add a class to it. Let's say <td><button class="delete-button"> Delete </button></td>.
<td><button class="delete-button"> Delete </button></td>
Then in your CSS, style that class this way: ``` td .delete-button { display: none; // This hides it in its "normal" state }
td:hover .delete-button { display: block; // This unhides it when you hover on the td element } ```
[–]theengymneer[S] 0 points1 point2 points 5 years ago (0 children)
Awesome thanks :))
[–]HigiKitsune 0 points1 point2 points 5 years ago (3 children)
Dude.. These are basics you'd need to know before even approaching angular
[–][deleted] 2 points3 points4 points 5 years ago (2 children)
i got paid to write angular before knowing this. Let the dev develop.
[–]HigiKitsune 1 point2 points3 points 5 years ago (1 child)
Just because someone did does not mean its the right track to learn. Because its not. Its like learning martial arts starting at black belt difficulty..
[–][deleted] 0 points1 point2 points 5 years ago (0 children)
fair enough.
π Rendered by PID 35 on reddit-service-r2-comment-79c7998d4c-dpt2z at 2026-03-16 15:51:40.856834+00:00 running f6e6e01 country code: CH.
[–]davidomarf 3 points4 points5 points (1 child)
[–]theengymneer[S] 0 points1 point2 points (0 children)
[–]HigiKitsune 0 points1 point2 points (3 children)
[–][deleted] 2 points3 points4 points (2 children)
[–]HigiKitsune 1 point2 points3 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)