I am doing autocomplete using PHP, but I am getting an error with the following code, so please help me.
index.php
this is my html code
<form method="POST">
<input type="text" name="txtpname" id="txtpname" size="30" class="form-control" placeholder="Please Enter City or ZIP code">
</form>
this is my script
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" />
<script type="text/javascript">
$(document).ready(function(){
$("#txtpname").autocomplete({
source:'ajax_autocomplete_party.php',
minLength:1
});
});
</script>
This is my ajax file where I get the data from. ajax_autocomplete_party.php
include "script / db.php";
$term=$_GET["txtpname"];
$query=mysql_query("SELECT * FROM party_details where NAME like '%".$term."%' order by NAME");
$json=array();
while($party=mysql_fetch_array($query))
{
$json[]=array(
'value'=> $party["PARTY_ID"],
'label'=>$party["NAME"]
);
}
echo json_encode($json);
I get an error while my page reload error: autocomplete not definedwhat to do now
source
share