Hi
I have used this site before and its been very helpful with topics about ranking ect... but this time I have problem that I really need your help about.
I think its something to do with JQUERY GOOGLEAPIS, below is the code from my site
I am having a new website developed, its a holiday and travel website. On every page I have a search filter box. With five choices ie From the drop down you select a country, then from the next drop down you select a region, then next drop down you select a town. Now the problem is while it goes away and filters out what information it should be displaying for the next dropdown , the box itself and the page jump and you see the what I think is the code behind the search box for a 1 second sometimes 2.It happens mainly to pages with a google map that we have placed on there. Is there any way to speed this up and not have the page jumping, just to make it flow better.
Sorry if I have not explained this in a tech way, but I am just trying to find some information to give to the people building the site who are finding it hard to find a solution.
Any help will be appreciated
Paolo
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="http://tab-slide-out.googlecode.com/files/jquery.tabSlideOut.v1.3.js"></script>
<script type="text/javascript" src="js/jquery.selectbox-0.1.3.js"></script>
<script type="text/javascript">
$(function ()
{
$("#country_id, #region_id, #resort_id, #guests_id, #accommodation_id").selectbox();
});
</script>
<script type="text/javascript">
$(function()
{
$('.slide-out-div').tabSlideOut(
{
tabHandle: '.handle', //class of the element that will become your tab
pathToTabImage: 'images/assets/feedback-button-pink.png', //path to the image for the tab //Optionally can be set using css
imageHeight: '120px', //height of tab image //Optionally can be set using css
imageWidth: '31px', //width of tab image //Optionally can be set using css
tabLocation: 'right', //side of screen where tab lives, top, right, bottom, or left
speed: 300, //speed of animation
action: 'click', //options: 'click' or 'hover', action to trigger animation
topPos: '80px', //position from the top/ use if tabLocation is left or right
leftPos: '20px', //position from left/ use if tabLocation is bottom or top
fixedPosition: true //options: true makes it stick(fixed position) on scroll
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
- <script type="text/javascript" src="http://tab-slide-out.googlecode.com/files/jquery.tabSlideOut.v1.3.js"></script>
- <script type="text/javascript" src="js/jquery.selectbox-0.1.3.js"></script>
- <script type="text/javascript">
- $(function ()
- {
- $("#country_id, #region_id, #resort_id, #guests_id, #accommodation_id").selectbox();
- });
- </script>
- <script type="text/javascript">
- $(function()
- {
- $('.slide-out-div').tabSlideOut(
- {
- tabHandle: '.handle', //class of the element that will become your tab
- pathToTabImage: 'images/assets/feedback-button-pink.png', //path to the image for the tab //Optionally can be set using css
- imageHeight: '120px', //height of tab image //Optionally can be set using css
- imageWidth: '31px', //width of tab image //Optionally can be set using css
- tabLocation: 'right', //side of screen where tab lives, top, right, bottom, or left
- speed: 300, //speed of animation
- action: 'click', //options: 'click' or 'hover', action to trigger animation
- topPos: '80px', //position from the top/ use if tabLocation is left or right
- leftPos: '20px', //position from left/ use if tabLocation is bottom or top
- fixedPosition: true //options: true makes it stick(fixed position) on scroll