[status-bydesign]?? Come on @Jeff, ajax is no reason to break the back button...
Greasemonkey to the rescue:
(function() {
function GM_wait() {
if (typeof unsafeWindow.jQuery == 'undefined') {
window.setTimeout(GM_wait,100);
} else {
$ = unsafeWindow.jQuery; letsJQuery();
}
}
GM_wait();
function letsJQuery() {
$(function() {
var textbox = $("#userfilter, #tagfilter");
var oldHash = "";
if (textbox.length > 0) {
textbox.unbind("keydown").typeWatch({ highlight: true, wait: 500, captureLength: -1, callback: almostFinished });
setInterval(function() {
var hash = location.hash.substring(1);
if (oldHash != hash) {
textbox.val(hash);
oldHash = hash;
unsafeWindow.finished(hash);
}
}, 200);
}
function almostFinished(txt) {
location.hash = txt;
oldHash = txt;
unsafeWindow.finished(txt);
}
});
}
})();
Apply to http://*stackoverflow.com/users* and http://*stackoverflow.com/tags* to get the back button working on tag/user searches (should also work on their SU/SF counter parts).
[status-completed] ;)
[status-bydesign]edit right now. – Jon Seigel May 10 '10 at 2:22[status-declined], surely it wasn't a deliberate "design" to work like that? – Alconja May 10 '10 at 4:58