clear the old values from textbox using jquery

jquery

Solution

Try this

$("#flip_list_search").val('');

Problem

I am looking for a way to clear the old values from text box when I refresh the page using jquery. I tried this code but it didn't work. ``` $('#flip_list_search').value = ""; ```

Original source