Access Div Contents using Up and Down Arrow Keys using javascript - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:22:40Z http://stackoverflow.com/feeds/question/402448 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/402448/access-div-contents-using-up-and-down-arrow-keys-using-javascript 0 Access Div Contents using Up and Down Arrow Keys using javascript Sandhurst 2008-12-31T07:05:23Z 2008-12-31T10:09:00Z <p>I have a Div Tag which contains 4 child Div Tags</p> <pre> <code> &lt;Div id="Parent"> &lt;div id="childOne">ChildOne &lt/div> &lt;div id="childOne">ChildTwo &lt/div> &lt;div id="childOne">ChildThree &lt/div> &lt;div id="childOne">ChildFour &lt/div> &lt/Div> </code> </pre> <p>Now I would like to access these Child Div's using up and Down Arrow Keys through Javascript The above div is show on click of a TextBox.I want that the user can choose any of the child div and its selected value appears in the TextBox. I have acheived the end result by attachinh onClick event to each childDiv.</p> http://stackoverflow.com/questions/402448/access-div-contents-using-up-and-down-arrow-keys-using-javascript/402450#402450 0 Answer by Michael Bray for Access Div Contents using Up and Down Arrow Keys using javascript Michael Bray 2008-12-31T07:08:59Z 2008-12-31T07:08:59Z <p>What do you mean "access them with arrow keys"? There is text in each of the divs... they don't contain any interaction elements, so keyboard has no relevance here. Maybe you need to elaborate your question?</p> http://stackoverflow.com/questions/402448/access-div-contents-using-up-and-down-arrow-keys-using-javascript/402460#402460 0 Answer by strager for Access Div Contents using Up and Down Arrow Keys using javascript strager 2008-12-31T07:16:58Z 2008-12-31T07:16:58Z <p>Are you looking for what is known as <a href="http://www.javascript-examples.com/autocomplete-demo/" rel="nofollow">auto-completion</a> or suggestions?</p> http://stackoverflow.com/questions/402448/access-div-contents-using-up-and-down-arrow-keys-using-javascript/402477#402477 0 Answer by Cyril Gupta for Access Div Contents using Up and Down Arrow Keys using javascript Cyril Gupta 2008-12-31T07:37:30Z 2008-12-31T07:37:30Z <p>You're definitely looking for 'Autosuggest/Autocomplete' This is rather time-consuming to implement fully if you want to do it in pure javascript, but yes, you could use the example from strager to get started.</p> <p>What I recommend is using <a href="http://jquery.com/" rel="nofollow">JQuery</a> instead. JQuery has a very nice <a href="http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/" rel="nofollow">plugin for autocomplete</a> that you can use. I just implemented in one of my projects a couple of days ago and it seems to work fine.</p> <p>There's an important saying that you must remember while making software -- 'Don't try to re-invent the wheel.' </p> <p>If other programmers have done it already, and they are kind enough to share, use it, and thank them.</p> <p>Cheers!</p> http://stackoverflow.com/questions/402448/access-div-contents-using-up-and-down-arrow-keys-using-javascript/402655#402655 1 Answer by meouw for Access Div Contents using Up and Down Arrow Keys using javascript meouw 2008-12-31T10:09:00Z 2008-12-31T10:09:00Z <p>Here's a library free solution to get you started.</p> <p>You might like to add events that hide and show the div when the textbox gains or loses focus. Perhaps [esc] should clear the selection? ( I haven't tested it in ie )</p> <pre><code>&lt;style&gt;div.active{ background: red }&lt;/style&gt; &lt;input type="text" id="tb"&gt; &lt;div id="Parent"&gt; &lt;div id="childOne"&gt;ChildOne &lt;/div&gt; &lt;div id="childOne"&gt;ChildTwo &lt;/div&gt; &lt;div id="childOne"&gt;ChildThree &lt;/div&gt; &lt;div id="childOne"&gt;ChildFour &lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; function autocomplete( textBoxId, containerDivId ) { var ac = this; this.textbox = document.getElementById(textBoxId); this.div = document.getElementById(containerDivId); this.list = this.div.getElementsByTagName('div'); this.pointer = null; this.textbox.onkeydown = function( e ) { e = e || window.event; switch( e.keyCode ) { case 38: //up ac.selectDiv(-1); break; case 40: //down ac.selectDiv(1); break; } } this.selectDiv = function( inc ) { if( this.pointer !== null &amp;&amp; this.pointer+inc &gt;= 0 &amp;&amp; this.pointer+inc &lt; this.list.length ) { this.list[this.pointer].className = ''; this.pointer += inc; this.list[this.pointer].className = 'active'; this.textbox.value = this.list[this.pointer].innerHTML; } if( this.pointer === null ) { this.pointer = 0; this.list[this.pointer].className = 'active'; this.textbox.value = this.list[this.pointer].innerHTML; } } } new autocomplete( 'tb', 'Parent' ); &lt;/script&gt; </code></pre>