JavaScript ComboBox

Set the placeholder property of the jqxComboBox. Author: http://jqwidgets.com

by musicreader

HTML

<link rel="stylesheet" href="https://www.jqwidgets.com/public/jqwidgets/styles/jqx.energyblue.css">
<link rel="stylesheet" href="https://www.jqwidgets.com/public/jqwidgets/styles/jqx.base.css">
<script src="https://www.jqwidgets.com/public/jqwidgets/jqx-all.js"></script>
<div id='jqxComboBox'></div>

JavaScript

var source = [
        "Affogato",
        "Americano",
        "Bicerin",
        "Breve",
        "Café Bombón",
        "Café au lait",
        "Caffé Corretto",
        "Café Crema",
        "Caffé Latte"
    ];
    // Create a jqxComboBox
      $("#jqxComboBox").jqxComboBox({
        source: source,
        theme:'energyblue',        
        width: '200px',
        height: '25px',
         placeHolder:"Enter text",
         searchMode:'contains',
    });