Well, we can detect the Ctrl-F combination like so:
Code:
<script type="text/javascript">
function kCode(e){
var ev=e? e : window.event? window.event : null;
if(ev){
var n=ev.keyCode? ev.keyCode : ev.which;
if(kCode.hold&&kCode.hold==17&&n==70){
//Do Something Here
}
kCode.hold=n;
}
}
document.onkeydown=kCode;
document.onkeyup=function(){kCode.hold='';};
</script>
If your script has an expand all thing, it could be executed in the spot now held by the green comment text. Otherwise, a pop up division could be revealed telling folks about the limits of the search. An alert would be better, but in IE 7 an alert would prevent the search box from appearing, so would be pointless.
Bookmarks