Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Function not being updated correctly Reply To: Function not being updated correctly

#236171
Alen
Participant

@xvilo


/* $( document ).ready(calcLeftWrapper()); */ /* should be */ $( document ).on('ready', function(){ calcLeftWrapper(); }); /* or */ $( document ).ready(function(){ calcLeftWrapper(); });