Therapy today. It’s funny when the clinic called me earlier this month and said, “therapist.” My therapist is more like my medication management therapist since my appointment was only ten minutes long. Which is how long medication management typically takes. And we focused on my medication. Also, my next appointment is about 5 to 6 weeks away. So I’m thinking she isn’t my therapist. But she is very friendly and seems to want to help. We talked a little about my anxiety and depression, and she asked me a little about my bipolar, PTSD, and ADHD. She changed up some of my medication for my depression and anxiety. We will work on the rest later.
Studying was short today. Well, I will probably study more after this. Still working on coding a registration form. Today we added a dropdown menu, using the select element. The select
element is a container for a group of option
elements and the option element acts as a label for each dropdown option. Both elements require closing tags.
Submitting the form with an option selected would not send a useful value to the server. As such, each option
needs to be given a value attribute. Without this, the text content of the option
will not be submitted to the server.
The textarea
element acts like an input
element of type text
, but comes with the added benefit of receiving multi-line text, and an initial number of text rows and columns. We can change the size of the textarea by adding the rows
and cols (columns)
attributes.
I will now get back to my studying.