Hi,
The plugin includes some javascript and CSS files. There are some plugins that allow minify the CSS and javascript files on website, but you should understand that your form is really complex. Rendering a complex form will be always slower than a simple contact page.
Best regards.
I have a problem like yours and found this blog(at the end comes the original link:
LightsOut’s Avatar LightsOut LightsOut is offline
Master Babbler
Join Date
Aug 2011
Posts
293
Default
If I were you, I wouldn’t care. This wouldn’t increase your google pagespeed score too much, and it is a very tiny improvement. On the other hand its almost impossible to achieve. What google wants you to do is to load your javascript and CSS after all of the HTML has been loaded.
This basically means that you have to include your javascript after the closing </html> tag instead of doing it in the head or footer. Then you would need to create inline CSS styles for rendering the content that is “above the fold” (which is next to impossible.. especially if you use responsive design for your site). After that is done, you would need to asynchronously load the CSS via javascript. Here is an example of how your page might look like:
<html>
<head>
</head>
<body>
<div class=”navigation” style=”color:red”></div>
</body>
</html>
<script src=”/js/jquery.js”>
<script>
$(function() {
$( “head” ).append(“<link rel=”stylesheet” type=”text/css” href=”theme.css”>”);
});
<noscript><link rel=”stylesheet” type=”text/css” href=”theme.css”></noscript>
Like I said earlier.. don’t bother unless you have a super simple site and this would be easy thing to do. It has literally almost no benefit for your page and is a huge time/effort investment.
http://goo.gl/82dQVw