Hi i am not good in javascript. This is a part of code from my ajax search auto-suggest and i need to replace "word" text with the text that comes from input. How can I do that?
<input type="text" id="selectedInput"/><ul id="list"></ul>
<script>
var keyword = "word"; (wrong code)
url: "http://itunes.apple.com/search?term=" + keyword + "&entity=musicTrack",
..