From: Kevin <ke...@dr...> - 2005-12-01 22:33:49
|
> Very good suggestions. I really like changing the link to "Today's > Unread items". And the ajax stuff sounds intriguing, though I imagine > you don't actually need Ajax. Or do you actually wait for a server > response before removing the div from the DOM? (ba-dim-dim :) This > would be very nice - as long as it degrades to non-js browsers. I'm playing with xajax on a side project at work. I'm impressed with how easy it is to manipulate the DOM from the server side. So with very little effort we could do exactly what you describe above. An event on the client sends a request to the server marking an item as read, then th= e server sends a response back to the client telling it to hide/remove the item from the page. All without a refresh on view.php. Nice, huh? --=20 Kevin |