Im working on a drupal site that uses jQtouch (for iphone), and im trying to make a search that doesnt reload the site. I think the javascript/ajax part isnt working. Im having problems finding out if the data from the php file is actually comming through, at the moment only the js that empties the search-results is working. Apperently jQtouch has ajax built into all forms or something. Does anyone have any interesting comments that could help me? btw this is the first time im using ajax and javascript
pensumsearch.php:
$search = $_GET["search-text"];
$result = db_query("SELECT nid FROM {node} WHERE title LIKE '%s' AND type = 'product_collection'", $search.'%');
$noder = array();
while ($record = db_fetch_object($result)) {
$noder[] = $record;
}
$matches = array();
foreach($noder as $row) {
$node = node_load($row->nid);
$res = db_query("SELECT tid FROM {term_node} WHERE nid ='$node->nid'");
$termlink = (db_fetch_object($res));
$matches[] = $node->title;
}
header('Content-Type: application/json');
print json_encode($matches);
?>
search.js :
(function($){
$(function(){
$("#form").submit(function(event, info) {
var text = $("input[id=search-text]", this);
text.blur();
var results = $("#search-results", this).empty();
results.append($("<li>", {
"class": "arrow4",
text: 'Resultater "' + text.val() + '"'
}));
$.get("pensumsearch.php", { value: text.val() },
function(data) {
$('#search-results').html(data);
alert("Data Loaded: " + data);
}
);
return false;
});
});
})(jQuery);