select() jquery code example
Example 1: jq select
$ jq '.[] | select(.location=="Stockholm")' json
{
"location": "Stockholm",
"name": "Walt"
}
{
"location": "Stockholm",
"name": "Donald"
}
Example 2: jquery select
$('#selector').selectmenu();