Every browser responds to invalid HTML and JavaScript errors in different ways. It's likely the trouble you are having is related to the invalid HTML and JavaScript errors on your page. Here is the JavaScript error:
Timestamp: 1/2/2013 5:32:58 AM
Error: ReferenceError: Tippy is not defined
Source File: http://wordinmotion.com/01test
Line: 56
<script type="text/javascript">
Tippy.tipPosition = "link";
Tippy.tipOffsetX = 0;
Tippy.tipOffsetY = 10;
Tippy.fadeRate = 300;
Tippy.sticky = false;
Tippy.showClose = true;
</script>
And the invalid HTML you have is jQuery for your fake progress bar being output before the beginning of the page. Here are the first few lines of the source of the page you referenced:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($) {
$("#gform_wrapper_3").after("<div id='fakeprogress'><h2>Uploading Files.. Please Wait</h2></div>");
$("#fakeprogress").hide();
$("#gform_wrapper_3 .gform_footer input").click(function () {
$("#fakeprogress").delay(3000).show('slow');
});
});
</script>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
<head>
You can't have all that before the beginning of the page. Please revise your method to include the progress bar script properly inside the page.
You also have jQuery referenced at least twice in the page. Here is the second time (coming from a plugin I think):
http://wordinmotion.com/wp-content/plugins/slider-pro/js/jquery-1.6.2.min.js?ver=3.2.1
Posted 11 years ago on Wednesday January 2, 2013 |
Permalink