Bind this function to a second event
I have a function that executes when a specific <select> field has its value changed:
- $(document).on('change','#form-register .gfield_list tr td:first-child select', function() {
However, I'd also like the function to run whenever the page is reloaded, is there a way I can do this simply with the on() method?