Hello
I need a script that allow the user to have proposals when he type some letters. Exemple: if you type "a", you can have proposals like abcd, abde, acde, adef. It you type "ab", you have only abcd and abde; and if you type abc, than you just have one choice.
I have the JS script working but I don't know how I can call it. In a classical PHP code, I call it like this:
<input type="text" onchange="showValue(this);" name="school">
showValue is the JS function that make the intelligent code.
Does anyone know how I can implement this for one field in my BF form ?
Thank you for your great help