I'm trying to use jQuery to create an auto complete input box for when the
submitter is entering the author name.  We are hoping this will help keep
the list of authors as normalized as possible.  Has any one done this or
can give me some suggestions.  I found something online that looks
promising, but I'm not sure how to pass the list of authors to the
javascript.

Here is a bit of the code that has me stuck:

         $.ajax({
       url: "ajax.php",
       data : "input="+input,
       success: function(msg) (
                   $("#suggest").html(msg);
                   )
       )};

The url is the call to get the list of data.  In the example I saw online
they used php.  But what do I do?
input is the string the user enters.

This link from the java script to the code that creates the data has me
stuck.  Any ideas?

Thank you!
Jose
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
DSpace-tech mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-tech

Reply via email to