• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Problem with External site border or JQuery

SauliusZ

Basic Pleskian
We have Parallels Presence Builder 11.5.11 on CentOS.
There is a problem with External site border. When we add a border in builder it shows ok, but on published website the border shows only on top. It seems that .watermark-content does not get height from javascript. It might be the problem with JQuery, because in DOM we see:
jQuery undefined
also $ undefined
But the file jquery.min.js loads ok.

So how to fix it?
The website would be http://www.vizsla-eu.lt/en/. Tried with other website, the same problem.
 
Hi there.

Your site looks very nice :)

Currently I see there another JS-error: Uncaught ReferenceError: getCookie is not defined.
As I can see this issue caused by incorrect order of included js-files.

It should be:
Code:
	<script src="{baseUrl}js/helpers.js"></script>
	<script src="{baseUrl}js/style-fix.js"></script>

But on your site I see:
Code:
	<script src="{baseUrl}js/style-fix.js"></script>
	<script src="{baseUrl}js/helpers.js"></script>

Did you changed files yourself after publishing?
 
No, I didn`t change files. I have also tried with another website and I`ve got the same problem.

I have tried to change file order after publishing, but it did not help.

So I`ve changed helpers.js file by adding $(document).ready() script. Other way the default script does not get elements
 
Back
Top