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? Link to comment https://forums.phpfreaks.com/topic/132089-solved-links/ 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. Link to comment https://forums.phpfreaks.com/topic/132089-solved-links/#findComment-686469 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.. Link to comment https://forums.phpfreaks.com/topic/132089-solved-links/#findComment-686529 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.