I have been trying to make this easier for myself but it won't work, I have a search bar using javascript to search names but I'm having to duplicate javascript ill show you what I tried but it wouldn't work....
Basically all I want is to give my users the option to type keywords and upper case and lower case options like you can see below,
any ideas would be greatly appreciated
I tried this but is wouldn't work....
if (x === "Jane Dow,jane dow,jane,") {
window.open ("files/janedow.html");
}
then had to do this which worked.... doing it this way will double my javascript page
if (x === "Jane Dow") {
window.open ("files/janedow.html");
}
if (x === "jane dow") {
window.open ("files/janedow.html");
}