I have a simple search form consisting of just a textfield, but it has filters (e.g., beginning the query with "type:" only searches a database column of "type"). What I'd like to have is for that text before the actual search term (i.e., "type:") to be styled in such a way that it's obvious to the user that it's a filter and not a search term. In fact, it might look something like StackOverflow's Tags textfield after a user has typed in a tag (see this). So far, I've got a .keypress() method being called on the textfield to determine if the first term is indeed a filter, but I'm not sure how to style the filter text. Any help is appreciated!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You will find that the SO tag box (and other solutions) actually do not style the content in the input box itself but prepend the tag/filter formatting as a span and adjust the width of the input box accordingly. The input box itself has all the styling removed (so no border or anything), the border is provided by a styled div. So you need a structure like this (btw this is a simplified view):
You need to handle adding/removing filters and resizing of the input box (based on the length of the filter tag) as well (if you have only one filter you could probably get away with a fixed width input field)... |
|||
|
|