Is there a way to apply styling to the second word entered into a form input text field after the user hits "enter" and the data is output?
In this scenario, the text always follows the format of 3 numbers, followed by a space, and then a name.
For example:
If I type "903 Houston" in the input field and display it, how can I highlight or style the second word ("Houston") separately from the rest of the text (e.g., make it bold) so that it outputs as "903 Houston"? Would I need to use HTML tags to modify just the second word that's being entered into the form? How could this task be achieved?