• It is possible to assign value to select fields by GET parameters?
    Example:

    page: /shop?option_filter=option1

    <select>
    <option value="option_filter:option1" SELECTED>Option 1</option>
    <option value="option_filter:option2">Option 2</option>
    <option value="option_filter:option3">Option 3</option>
    <option value="option_filter:option4">Option 4</option>
    </select>

    I tried with jQuery to select specific option on document ready, but it doesn’t work.
    Can you help me or you can create this features?

The topic ‘Input parameter’ is closed to new replies.