I think this is asked by someone before but I can't get it to work with my script. When I start typing in the input field and for example I start with the letter A I get every Label that contains the letter A.
I only want the Labels that Start with the letter A.
This is my script:
<link rel="stylesheet" href=".10.3/themes/smoothness/jquery-ui.css" />
<script src=".9.1.js"></script>
<script src=".10.3/jquery-ui.js"></script>
<style>
.ui-autoplete {
max-height: 100px;
overflow-y: auto;
/* prevent horizontal scrollbar */
overflow-x: hidden;
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autoplete {
height: 100px;
}
</style>
$(function() {
$( "#tags" ).autoplete({
source: [{
label: "Apple",
value: ""},
{
label: "Google",
value: ""},
{
label: "Yahoo",
value: ""},
{
label: "Bing",
value: ""}],
minLength: 3,
select: function(event, ui) {
event.preventDefault();
$("#tags").val(ui.item.label);
$("#selected-tag").val(ui.item.label);
window.location.href = ui.item.value;
}
,
focus: function(event, ui) {
event.preventDefault();
$("#tags").val(ui.item.label);
}
});
});
This is my html:
<div class="ui-widget">
<label for="tags" style="float:left; margin-right:5px; font-size:12px; margin-top:10px; margin-left:55px; text-align:right;">Search Engines:</label>
<input type="text" placeholder="Search for engine..." id="tags" style="width:150px; padding:3px; margin:9px 0 0 0; float:right;" />
</div>
Is this possible with my script like it is now?
Thanks in advance
I think this is asked by someone before but I can't get it to work with my script. When I start typing in the input field and for example I start with the letter A I get every Label that contains the letter A.
I only want the Labels that Start with the letter A.
This is my script:
<link rel="stylesheet" href="http://code.jquery./ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery./jquery-1.9.1.js"></script>
<script src="http://code.jquery./ui/1.10.3/jquery-ui.js"></script>
<style>
.ui-autoplete {
max-height: 100px;
overflow-y: auto;
/* prevent horizontal scrollbar */
overflow-x: hidden;
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autoplete {
height: 100px;
}
</style>
$(function() {
$( "#tags" ).autoplete({
source: [{
label: "Apple",
value: "http://www.apple."},
{
label: "Google",
value: "http://www.google."},
{
label: "Yahoo",
value: "http://www.yahoo."},
{
label: "Bing",
value: "http://www.bing."}],
minLength: 3,
select: function(event, ui) {
event.preventDefault();
$("#tags").val(ui.item.label);
$("#selected-tag").val(ui.item.label);
window.location.href = ui.item.value;
}
,
focus: function(event, ui) {
event.preventDefault();
$("#tags").val(ui.item.label);
}
});
});
This is my html:
<div class="ui-widget">
<label for="tags" style="float:left; margin-right:5px; font-size:12px; margin-top:10px; margin-left:55px; text-align:right;">Search Engines:</label>
<input type="text" placeholder="Search for engine..." id="tags" style="width:150px; padding:3px; margin:9px 0 0 0; float:right;" />
</div>
Is this possible with my script like it is now?
Thanks in advance
Share Improve this question asked Oct 4, 2013 at 9:18 user1511766user1511766 1251 gold badge1 silver badge9 bronze badges 1- see forum.jquery./topic/… – asdf_enel_hak Commented Oct 4, 2013 at 11:08
1 Answer
Reset to default 10Try This
var data = [
{
label: "Apple",
value: "http://www.apple."
},
{
label: "Google",
value: "http://www.google."
},
{
label: "Yahoo",
value: "http://www.yahoo."
},
{
label: "Bing",
value: "http://www.bing."
}];
$(function() {
$( "#tags" ).autoplete({
source: function( request, response ) {
var matcher = new RegExp( "^" + $.ui.autoplete.escapeRegex( request.term ), "i" );
response( $.grep( data, function( item ){
return matcher.test( item.label );
}) );
},
minLength: 1,
select: function(event, ui) {
event.preventDefault();
$("#tags").val(ui.item.label);
$("#selected-tag").val(ui.item.label);
window.location.href = ui.item.value;
},
focus: function(event, ui) {
event.preventDefault();
$("#tags").val(ui.item.label);
}
});
});
SEE DEMO