I have a text input element, the objective of which would be for the visitor of my site to search for the title of my dynamic pages. I want to have it on my main (non-dynamic) page and have the results detach from the text input element.
Something like this:
Do not hesitate to ask any questions. Thank you very much in advance.
Hello felipebenjamin1810😀,
So, just to get you right, you want to create an autosuggest dropdown right?? You need to create a search bar too???
You can create an autosuggest dropdown. I created one for my site. Here is a screen shot on how it looks for my site.
Here is a link to a tutorial and you can edit it.
link to tutorial: https://www.grampsworkbench.com/Examples/Repeater-Dropdown
You can use a regular page for this. You can add a repeater and connect it with a dataset. You will store your autosuggestions in a database. If you open the template, you will be able to see how to code it, and how it works. You will need to manually enter the autosuggests into the suggestion database. If you want to show images of the autosuggestions, that is possible to do as you will be using a repeater.
Then you can add the search function to the search bar. Here is a link to a super easy to follow tutorial on how to make one.
link: https://www.youtube.com/watch?v=xujaBNElgjw
I am sorry if I got you wrong and this is not what you were looking for.
~Hope this helps!~
Arthur 
Hi Arthur!
I don’t have enough words to thank you, you’re a genius!
The only thing I could not do is that, when the visitor of my website clicks on some auto suggestion, it will be redirected to my dynamic page. I promise it’s the last question I make.
Again, thank you very much

Do you know why I can’t remove the background color from the container box? Otherwise I could change it to blend with the background, but I can’t change the color.
Ok felipebenamin1810,
I have never redirected to a dynamic page, so I can’t help you. Please don’t expect my to have all your answers. You could try searching the forum using the forum search, or the internet.
As for changing the color of the container, you can’t do that. You will just have to put a box on top of the container and change that color.
Sorry for not being in any help. @russian-dima , could you come and help use???
Hello together,
you will need…
https://www.wix.com/corvid/reference/wix-location/to
wixLocation.to("/long-page#downUnder") //normal redirection
This is an example, if you want to give a butten the link to a dynamic page.
let myURL = $w('#YourDataset').getCurrentItem()["link-tutorials-title"]
console.log(myURL)
$w('#YourButton').link = myURL
You will find a section in your database, which looks like this one…
These are dynamic links.
And do not forget the API-import!
import wixLocation from'wix-location';