There's a great tutorial on IBM's website which walked me through a simple search/results list using jQuery,PHP and Ajax. I was able to make it work and it's really cool.One problem. I want the results to be hyperlinks and I can't get any java script to run on the results. Here is the script I have (includes what was in the tutorial plus the additional script necessary to ovverride the hyperlink, click behavior):\[code\]<script type='text/javascript'>$(document).ready(function(){$("#search_results").slideUp();$("#search_button").click(function(e){e.preventDefault();ajax_search();});$("#search_term").keyup(function(e){e.preventDefault();ajax_search();});$("a").click(ClickInterceptor);});function ajax_search(){$("#search_results").show();var search_val=$("#search_term").val();$.post("./find.php", {search_term : search_val}, function(data){if (data.length>0){$("#search_results").html(data);}})}function ClickInterceptor(e){window.alert("Hellow World!");return false;}</script> \[/code\]If i put the following html under the \[code\]<body>\[/code\] tag:\[code\]<a href="http://stackoverflow.com/questions/2061776/test">this will work</a>\[/code\]That will display the alert window.However, if I change the results to hyperlinks (found in find.php, listing 7 from the tutorial):\[code\]$string .= "<a href=http://stackoverflow.com/questions/2061776//"test\">".$row->name."</a> - "; \[/code\]It does not work.Any idea on how to fix this?