Quick Find (ctrl+f) Inside Hidden Div
I have a page with tabs implemented, where the inactive tabs are hidden with display:none. Now I'm trying to find a way to search in these hidden divs using the browsers quickfind
Solution 1:
Well you can sure ask for the keyboard shortcuts but they can still use the browser menu to start searching.
Wouldn't it be easier to use a different method to hide those tabs? Something like
display: block;
height: 0;
width: 0;
overflow hidden;
for example (depends on you special markup/css of course)
Post a Comment for "Quick Find (ctrl+f) Inside Hidden Div"