A colleague made a small module to retrieve twitter search results based on user configurable search terms and display them in a block.
He is doing the searching with javascript to keep that traffic on the client side, something like:
$.getJSON('http://search.twitter.com' etc..
Then when the json results are returned inserting them into the block, wrapping the returned data in html and appending it to the block.
Is there a way that this could be made themeable from the javascript layer? Without it being passed back into drupal and losing the bandwidth etc advantage of having it sit client side?