Hacker News new | ask | show | jobs
by amitamb 4758 days ago
If using chrome try executing following from Console (Right click > Inspect element)

$("#TB_overlay").remove();$("#TB_window").remove();

2 comments

In Firefox, right click the element and select "Inspect Element". This will then show you the DOM, with the element higlighted. Then right click the hilighted element and click "Delete Node". Alternately, click "Web Console", and then type in the same command as from the example above.
Nice. How did you figure that out?
Chrome has a some nice developer tools. OP probably right-clicked the popup and got the element name, and from there knew exactly what to target.
Just to make it known, this particular set of tools isn't chrome exclusive and Firefox also has these features.