/ Published in: jQuery
Set a variable by getting the URLs id with PHP. Find the the option with the name value that is equal with the variable and add "selected" to it.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var pId = "<? echo $_GET['category'] ?>"; $("select#category option[name=" + pId + "]").prop("selected", true);