Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
User Journal

Journal toesate's Journal: disable swf, iframe, embed tags

1. http://bugzilla.mozilla.org/show_bug.cgi?id=94035

2. Snapped from google search

javaScript:function removePlugins( node ) {if ( node.nodeType == 1 && node.tagName.toLowerCase() == 'object') {var a = node.parentNode;var box = document.createElement('div');box.style.overflow="hidden";box.style.border = "1px solid black";box.style.textAlign = "left";box.innerHTML = "Plugin";box.style.width = document.defaultView.getComputedStyle(node, '').getPropertyValue('width');box.style.height = document.defaultView.getComputedStyle(node, '').getPropertyValue('height');a.insertBefore( box, node );a.removeChild( node );} else if (node.childNodes) {for (var i=0; i node.childNodes.length;i++)removePlugins(node.childNodes[i]);}}removePlugins(document.body);

http://www.macosxhints.com/article.php?story=20021127061854547

Any circuit design must contain at least one part which is obsolete, two parts which are unobtainable, and three parts which are still under development.

Working...