How to add a combo box dynamically at run time in Java
script?
Answer Posted / rubin thomas
u cant add a combo box dynamically u can add option
dynamically. Also if u want to show a combo box which is
hidden u can do that using showhide() function in js to show
or hide this element. but the box must be present in your code
.
| Is This Answer Correct ? | 21 Yes | 24 No |
Post New Answer View All Answers
Which built-in method returns the characters in a string beginning at the specified location?
What will happen if an infinite while loop is run in Javascript?
What is difference between ajax and javascript?
Are Javascript and JScript the same?
Why is javascript called richer interface?
How do you submit a form using JavaScript?
Is there an ide for javascript?
What is Associative Array? How do we use it?
What does window.print() do in Javascript?
Which keyword is used to print the text in the screen?
Can you explain the difference between == and ===?
What are different types of scope chain available in javascript?
Explain spread operator in javascript?
How to create an object in javascript?
What is missing in my code? function numberTally(numList) { var evenTotal = 0; var oddTotal = 0; for (var i = 0; i <= numList.length; i++) { if i % 2 { // i is odd oddTotal += numList[i]; // or oddTotal = oddTotal + numList[i]; } else { // i is even evenTotal + numList[i]; } } alert(oddTotal); return evenTotal; }