.blog 

I use Firebug all the time to track javascript errors, AJAX requests and to monitor network requests, and it’s a real cool part of my web development arsenal. But Firebug can be helpful in more ways than just testing and debugging your own apps.
So, I’m pretty much in the middle of nowhere, in the only decent hotel (definition: has broadband) in the area. I connect to the network, bring up the usual sales page and enter my contact and payment details. Ok, all good.
Error: Invalid zip code. I go back and check the details I put in, and the zip code is cut-off as this form only accepts 4 digits (bad design), when my credit card zip is 5. So I open up firebug, switch to the inspector, click the zip field, and change the maxlength attribute of the input to 6. Voila, I type my zip code in, re-submit, and I’m online!
Of course, I could have emulated the form by copying the code, changing the maxlength attribute, saving, opening in a browser and re-submitting, but that takes time and would loose the SSL. Or, I could write a quick greasemonkey script to make the change, but again, more time consuming.
archive



















No Comments
No comments yet.
RSS feed for comments on this post / TrackBack
Leave a comment