I have a page with a lot of jQuery elements (large jquery files) and the problem with this is that the styled elements that replace standard HTML elements (checkboxes, radiobuttons and selectboxes/dropdown) shows the standard appearance for some millisecond at page load.
Is there any way to make the exchanged for those elements to show faster?
The elements scripts use ready() and is placed in head. The optimal solution would be if the changed elements load direcly insteed of the standard elements (but I guess that dont work).
The plugin I use to style the elements is:
Thanks for answers.
You can prevent that by hiding your whole page (via
display:none) until the elements are styled by your plugins: