Adding Items to Select List
I am attempting to add items to a select list using the code below;
var ob = Appery('vehlist');
var val = 1;
var text = ‘ABC 123’
ob.prepend("" + text + "");
Appery('vehlist').refresh();
The list is empty if I console log the added item I get:
ABC 123
What is the correct method to get items into a select list?
Regards,
Joe