Jquery Position absolute validator plugin wont work online - html

I am using this plugin
http://www.position-absolute.com/articles/jquery-form-validator-because-form-validation-is-a-mess/
It works perfect in dreamweaver offline as soon as I upload it to my web server hosted by one.com it doesn't work. It uses the jquery validation engine and css to display error messages.
When online the form displays but wont validate.
This is the webpage I cant get it to work on
http://www.notgotaclue.co.uk/contactUs.html
Any help would be greatly appreciated...
Thank You in advance.

These are the js files currently loaded by your application
You need to include all these missing jquery and js files
and also add correct file path references

Related

my project works with live server extension only

I have a live server extension in my VC and it works well, the problem is when I try to open my page without using the extension it shows up the page without any CSS colors or images or anything, I want to see my project with all CSS codes I wrote without using live server, thank you
Have your tried copying the full path of the file then entering it in the browser?
If that still doesn't work, try refresh the page when updating your html/css/js file.
Sharing your code will help us more to Debug it.
Instead, I suggest you,
Just recheck your internet connection if you're using any CDN or any API like Bootstrap, Tailwind CSS.
Check your links if referred to any external CSS or js.

wordpress site page not loading correctly

I am a noob to wordpress and not sure how to properly formulate my question, so I added a screenshot of the problem. When I navigate to the site below page is visible. It seems all Css and content is not being loaded properly.
When I click on one of the links the page loads correctly. The site does not have a valid SSL certificate atm and chrome does complain about that, but I never had it before that something like this happens.It doesn't seem to be a browser issue since I tried it on several different browsers.
I also cleaned up the .htaccess file to its default values. I have no idea where to start looking for a solution, any input would be great!
As I wrote in the comment, here is a possible fix to your problem. Put the code inside your functions.php file.
I'm not experienced using this CMS, but your problem seems to be related to the css and js resources loading.
Here and here there are some useful resource where you can find more info on how to handle your custom scripts in wordpress.
<?php
function init_res(){
// the wp_enqueue_style() function is used to load all the custom css files
wp_enqueue_style('scriptname', get_template_directory_uri().'/your/script/path/file.css');
// the wp_enqueue_script() function is used to load all the custom js files
wp_enqueue_script('scriptname', get_template_directory_uri().'/your/script/path/file.js', array('jquery') );
}
add_action('wp_enqueue_scripts', 'init_res');
?>
Note that with the javascript files, the wp_enqueue_script() function will take the array('jquery') param, this will tell to wordpress that the loaded script has the jquery dependency.

Protect yii2-apidoc generated html

I have generated api docs using the yii2-apidoc extension and have a nice working site with html-pages in a folder.
However I do not want these pages to be publicly available, rather behind the normal login to my backend-site. Can't figure out a way to do it in Yii.
Tried to use renderFile() in a controller, but that still leaves wrong links to other asset-files (css).
Any ideas appreciated.

HTML Link not working?

I'm running this jade-based app locally and I've been trying to include a ejs file in it but I was unsuccessful. So I tried to convert my ejs file to jade and again my several attempts failed.
So I thought about just creating a HTML link that takes me to the ejs page on click. Problem is when I click it, nothing happens.
Here's how I made the link:
My Link.
Linking to local resources is disabled in all modern browsers due to security restrictions.
See this answers for more details.
check if the link is really file:///
or you can use double dot notation in your link
example:
../views/account/el.js
Hope it helps

First widget works in Dashcode but not when deployed

My widget does not work once deployed even though it shows no errors in Dashcode. Apologies in advance for my inarticulartness with the terminology. I am a newbie.
To create the widget, I deleted the default .js file and pasted the JavaScript plus XHTML into the HTML page and created the accompanying CSS file.
The only code I can see that is generated is the plist.
I tried opening up all the permissions but nothing seems to change.
The OSX utilities console shows errors which are on lines beyond what there are numbers for in the code.
I don't think the JavaScript/XHTML/CSS is the problem as it works when in a web page and the widget does actually work within Dashcode.
Help appreciated,
Ruby
If you're using Dashcode, don't delete the default JS. file. This is important because it has the loaders necessary to render most of the parts in your widget. You can always add your custom javascript file. It also provides code that will allow it to work properly in Dashcode.