Jquery Standard Dropdown Only Stylizing On Page Load, Hit Refresh And Its The Ugly Normal One
Trying to achieve the 'drop down' effect I have on my form here once you click 'add mileage and open it that is' it seems to only happen upon the first load, if you refresh or go b
Solution 1:
Try running the function after the page has loaded:
window.onload = function() {
makeRunRecord();
}
Post a Comment for "Jquery Standard Dropdown Only Stylizing On Page Load, Hit Refresh And Its The Ugly Normal One"