Facebook like input field and more

I recently came across this great JavaScript library called TextboxList by Guillermo Rauch which will convert good old input fields into Facebook like input fields.

textboxlist

Even though there are tons of JavaScript libraries out there, it is very hard to find one with sufficient documentations and good overall quality. TextboxList definitely surprised me with not only its quality but the flexibility to be customized in order to fit different needs. There are MooTools version and jQuery version, and it supports both preloaded data and on-demand AJAX for auto-completion.

If you are looking for a way to jazz up your page, this is a must-try!

About the Author

Object Partners profile.
Leave a Reply

Your email address will not be published. Required fields are marked *

Related Blog Posts
Android Development for iOS Developers
Android development has greatly improved since the early days. Maybe you tried it out when Android development was done in Eclipse, emulators were slow and buggy, and Java was the required language. Things have changed […]
Add a custom object to your Liquibase diff
Adding a custom object to your liquibase diff is a pretty simple two step process. Create an implementation of DatabaseObject Create an implementation of SnapshotGenerator In my case I wanted to add tracking of Stored […]
Keeping Secrets Out of Terraform State
There are many instances where you will want to create resources via Terraform with secrets that you just don’t want anyone to see. These could be IAM credentials, certificates, RDS DB credentials, etc. One problem […]
Validating Terraform Plans using Open Policy Agent
When developing infrastructure as code using terraform, it can be difficult to test and validate changes without executing the code against a real environment. The feedback loop between writing a line of code and understanding […]