'Create a url shortcut for a ajax search field 3

I'm trying to create a shortcut to a page with a search value included. For example in this page :

https://adminlte.io/themes/v3/pages/tables/data.html

There is a search field in the middle of the screen which is live (ajax) and when you type 1.8 it limits results to 8. Can i create a url to show directly this "filtered data page " ? something like this ->

https://adminlte.io/themes/v3/pages/tables/data.html?Search="1.8"



Solution 1:[1]

If I understood your question correctly, you want to pass a parameter to the search field and the search field functionality is done with javascript. In this case, you can pass a parameter like in your example, but then it will have to be in the code of the search functionality that your read the parameter and act accordingly, for example by reading window.location.search https://developer.mozilla.org/en-US/docs/Web/API/Location/search

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 jamomani