Hi. I have worpress site and I use a form plugin. There is no direct organic link to my contact forms and they are all at the bottom of the page. The plugin uses a lot of css files that I want to defer loading. I found a defer script from here. So I added my file path and came up with this:
var giftofspeed = document.createElement('link');
giftofspeed.rel = 'stylesheet';
giftofspeed.href = ' http://www.modovis.com/wp-content/plugins/gravityforms/css/formreset.min.css ';
giftofspeed.type = 'text/css';
var godefer = document.getElementsByTagName('link')[0];
godefer.parentNode.insertBefore(giftofspeed, godefer);
Here is my site.
It doesn’t seem to work. Any ideas would be appreciated.