data base search

im trying to add a search bar for my database and i keep getting a parsing error unexpected token warning how do i fix this

You need to check your code and make sure that you have matching pairs of opening and closing parentheses and curly brackets.

So go through your code and make sure that you have equal numbers of parentheses which are the ( and ), along with equal numbers of curly brackets which are the { and }.

You forgot $w in line 8.

i done that and it came up with $w.contains is not a command

@charlieevans99 The code should be:

.contains("name", $w("#search1").value)

Refer to the Corvid documentation to learn about Corvid coding.

@yisrael-wix thank you, its come up with The element selector function (usually $w) cannot be used before the page is ready??

@charlieevans99 The Editor thinks that the $w is in the wrong place. Make sure that parentheses and brackets match - that’s most likely where your problem is.

See the community guidelines . Please, no screenshots of code, very hard to read.