Some people prefer to be warned when a website wants to set a cookie. Even though the option does not appear in Firefox, this is another feature from the Mozilla Application Suite that is in the back-end code for Firefox.
To enable cookie warnings in Firefox:
Enter about:config in the location bar.
Right-click anywhere within the list of preferences and select New → Boolean.
When you get asked to enter the preference name, enter:
network.cookie.warnAboutCookies
Thanks for this bit of info Polonus. I was able to do what you mentioned in my browser Flock, vs 0.7.14 as you said could be done in Firefox. I was also able to do it in Firefox. In SeaMonkey vs. 1.1.2 when doing this the browser WARNS you to be careful, that making changes could make the browser unstable, loss of data, etc. But, once you read that you can continue on and make the change as in the other browsers.
yes, my friend, I knew you are into tweaking your Mozilla browsers a bit now, and good for you. Why don’t you install a better url bar: locationbar2 add-on, use the error console2 add-on also that fixes a dozen or so bugs at once, and plays perfectly along JSView (I joined their forum recently). I also clean all traces from the browser after every computer session using Clear Private Data, together with an ATF-Cleaner & IECache Explorer Sweep before I close the browser down. I also have put this code as filter.JS inside the Flock components folder.
/*
Very slow filtering function for unordered lists
Dobrica Pavlinusic, dpavlin@rot13.org 2004-09-06
*/
function filter(document, id, regex) {
var min_len = 1;
var debug = 0;
// get UL element by ID
var ul = document.getElementById(id);
if (! ul) { return; }
// get all LI elements
var li = ul.getElementsByTagName("li");
// get out if too few characters in search
if (regex && (regex.length < min_len || regex == '') || !regex) {
regex = '.';
// return;
}
var status = "";
if (debug) { status += "filter: '"+regex+"'
"; }
var total = 0;
var visible = 0;
if (debug) { status += "elements = "+li.length+"
"; }
if (regex) { var reg = new RegExp(regex, 'i'); }
for (var i = 0; i < li.length; i++) {
var text = li[i].innerHTML.replace(/<[^>]+>/g,"");
if (debug) { status += i+": "+text; }
total++;
if (reg && reg.test(text)) {
li[i].style.display = '';
visible++;
if (debug) { status += " <b>visible</b> " };
} else {
li[i].style.display = 'none';
if (debug) { status += " hidden " };
}
if (debug) { status += "
"; }
}
status += "shown "+visible+" of "+total+" entries for <em>"+regex+"</em>
";
var status_div = document.getElementById("status");
if (status_div) {
status_div.innerHTML = status;
}
}