scripts does not work two together
<link href="css/custom-theme/jquery-ui-1.10.2.custom.css" rel="stylesheet">
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery-ui-1.10.2.custom.js"></script>
<script>
$(function() {
$( "#accordion" ).accordion({heightStyle:"content"});
$( "#accordion" ).accordion({collapsible: true});
$( "#accordion" ).accordion({active: false});
$( "#button" ).button();
$( "#radioset" ).buttonset();
});
</script>
// together two scripts does not work
// How should I do, please help
<link rel="stylesheet" type="text/css" href="css/jquery.autocomplete.css" />
<script src="js/jquery.js"></script>
<script src="js/jquery.autocomplete.js"></script>
<script type="text/javascript">
$().ready(function() {
$("#course").autocomplete("projeal.php", {
width: 500,
matchContains: true,
selectFirst: false
});
});
</script>