Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. Supa

    CSS Make :focus button last forever unless another button is :focus

    I have some CSS code for a list of buttons. I want the buttons changed colors from the focus to last forever until another button is in :focus.For example: ```css .buttons { background-color:red } .buttons:focus { background-color:orange } ``` However, when I press away from the button, the...
  2. Supa

    Node.JS MongoDB/Mongoose save a string to a specific collection

    there is a thing that im confused about, i'm using node.js and express.js (template express) and i have a mongodb database. i have some code like this ```js //variables for router, mongoose e.t.c are included, but that would be long router.get("/", landing.get_lead); //connects to mongoose and...
Back
Top Bottom