I am using a drop down for dynamically changing content on a page. It works but is throwing a js error in Chrome ONLY. What Chrome recommends I don\'t know how to implement.
Use document ready event
$(document).ready(function(){ $('#drop').change(function(){ if (this.selectedIndex !== 0) { window.location.href = this.value; } }) });