The Little Guy Posted November 10, 2008 Share Posted November 10, 2008 If I use this in my href: #someValue I can't focus in my text field. This is a value that I want in the address bar though. But if I use this in my href: javascript:void(0); I can focus in my text field, but nothing goes into the address bar. Here is one of the links on the page: <a class="<?= ((!$dsSet || $s=='searchWeb') && !$_GET['q'])?'sel':'uSel';?>" id="searchWeb" href="#searchWeb" onclick="searchFor(this.id);document.getElementById('q').focus();">Web</a> How can I get it to focus in the text field, and place #someValue in the address bar? Quote Link to comment Share on other sites More sharing options...
JasonLewis Posted November 10, 2008 Share Posted November 10, 2008 Try doing it with JavaScript as well: window.location='#someValue'; Other then that, no idea. Quote Link to comment Share on other sites More sharing options...
The Little Guy Posted November 10, 2008 Author Share Posted November 10, 2008 Oh WOW, that works, I was doing something VERY Similar that didn't work... I did this: location='#someValue'; Works for somethings, but not everything I guess.. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.