Switching Banner With Image Click - Page Itself Is Long And Must Be Vertically-scrolled To See Entire Content

Jun 11, 2009

I have a banner that has image navigation on the lower right. The navigation links are images which, when clicked, change the banner without reloading the page. The actual switching of the banner is working when each image is clicked.

However, my problem is this:

The page itself is long and must be vertically-scrolled to see the entire content. Because of the scrolling, the banner could appear anywhere vertically on the page. And whenever I click the banner navigation hrefs, the page "jumps" so that the banner is at the top. The page should really stay in the fixed position.

I'm not sure how to set it up so that no matter where the banner section is on the scrolled page, that the page stays in the same position when the navigation is clicked.

My href's in that navigation are set up as :

Do I need something in my script so that the page won't jump? Or am I missing something in the HTML?

View 3 Replies


ADVERTISEMENT

JQuery :: Loading New Content When Scrolled To Bottom Of Page

May 15, 2011

I have built a site that loads new content from a database when the user hits the end of the page. This works fine in all desktop browsers and on the iPad, but is not working on the iPhone. Have tried an iPhone 3g and 4.

Here is the code:
$(window).scroll(function(){
if($(window).scrollTop() == $(document).height() - $(window).height()){
$.ajax({
type: 'POST',
url: 'nextSet.php',
data: "?dummy=" + new Date().getTime(),
dataType: 'html',
cache: false,
beforeSend: function() {
$('#scrollLoading').show();
$('#scrollLoading').html('<p><img src="/images/ajax-loader.gif" alt="loading..." /></p>');
},
success: function(response){
$('#scrollLoading').hide();
$('#resultsPageSearch p').css('margin','0');
$('#sortDrop').show();
$('select.sortddl').selectmenu('destroy');
$('select.sortddl').selectmenu({style:'dropdown'});
$('#resultsSection').append(innerShiv(response));
},
error: function (request, status, error) {
alert(request.statusText);
}});}});

View 1 Replies View Related

JQuery :: Center ClueTip Image Content Vertically And Horizontally

Jul 6, 2009

I'm trying to get some thumbnail images that are displayed with ClueTip to be centered vertically & horizontally. The images are various sizes, though none is larger than 150px on a side, so I set ClueTip to have a width & height of 200px. The images are wrapped in a div so that I can have them display: none by default, yet assign display: block to the images themselves.
div.DownloadStatsThumb { display: none; vertical-align: middle; }
img.DownloadStatsThumb { display: block; margin: auto; }
The markup looks like so:
<a href="#" rel="#thumb_456" title="">foo</a>
<div class="DownloadStatsThumb" id="thumb_456">
<img src="/path/to/some/image.jpg"
width="150" height="101" alt="thumbnail image"
class="DownloadStatsThumb" />
</div>

The images are always aligned left & top. Eventually, I figured out that it was div#cluetip-inner that was the culprit. While the outer div has a height and width, the inner div has display:inline-block and so was shrinking down to the img size, essentially. I then added:
onActivate: function(e){
$('#cluetip-inner')
.css('display', 'block')
.css('width', '186px')
.css('height', '186px')
.css('vertical-align', 'middle')
.css('background-color', '#000');
return true;
}
The 186px is to avoid getting scrollbars and the BG color is to assure myself that it's resizing ok. However, the images remain centered horizontally only. Is there something else I've missed?

View 1 Replies View Related

Dropdown And Switching Content Without Page Reload?

May 27, 2011

There are two pages,

folder/india.html
folder/usa.html

and dropdown menu in each page to switch between india and usa pages.

india.html page sells in INR and usa.html in USD with links to shopping carts for each currency.

link1(INR)
link2(USD)

Except the link and the currency information(selling price), contents in both the pages are same.

So here comes the problem. Google hates duplicate pages!

I am looking for a solution where, a single page In That Page, a dropdown menu to select currency As the currency is selected, without page reload, the link to shopping cart and the pricing also should be changed according to the selected currency. So Single page should be able to handle both the currencies.

View 2 Replies View Related

JQuery :: Plugin To Vertically Slide Whole Page / Container Content Down?

Jan 13, 2012

Im looking for something that would allow a user to click on a button / link that would then reveal hidden content by sliding the whole of the main site content / container down.

I found this which slides the page content to the left or right [URL]

But need something vertical, almost as if the whole site was a big vertical accordian.

Or like on twitter / facebook phone app when refreshing for new tweets etc.

View 2 Replies View Related

Tight Loop Of Code Long For A Long Period Of Time Without Freezing The Page?

May 11, 2011

Is their anyway to have a tight loop of code long for a long period of time without freezing the page? I want to be able to do:

for (i=0;i<9999999999;i++){
//some code
if (i%100==0){
yield();
}
}

View 8 Replies View Related

Making A Box Of Text Appear When Hover Over An Image - Scroll Vertically On Each Page

Dec 7, 2010

I have a div column that has my projects that scroll vertically on each page. I want to have a functionality where I can have the user hover over the image on the left and a column beside that will appear some text that describes the project. That text would change when they hover over a different project. I don't know where to find this kind of thing.

View 3 Replies View Related

When Dragging An Image, It Wont Place It On The Bottom Bar Until The Whole Page Is Scrolled Down To The Bottom Of The Page?

Mar 23, 2010

I hired a programmer to develop a drag and drop system for my blog. The user should be able to browse one of my blog entries and click, drag and drop an image from my entry to a fixed bottom bar on that page.The problem we are facing is that when dragging an image, it wont place it on the bottom bar until the whole page is scrolled down to the bottom of the page. This is a problem because some of the pages can be very lengthy

View 2 Replies View Related

Stretch Top Banner Image To Whole Of Page

Jun 17, 2010

I need to stretch my banner Image at the top of the page to the whole of the page. The development computer on which I was working for this site displayed it correctly. Today when I opened the code in another compter the top banner image didn't display itself for the whole of the page. It just contracted to the left side. I am wondering how do do it. Well I used background-image:100% but that didn't work(CSS3 compatibility issues). Any tips to stretch this top banner to the whole of the page in every computer.

View 4 Replies View Related

Image Rotation In A Banner When User Refresh A Page?

Nov 29, 2011

I am trying to create banner where the image changes when a user refresh the page. Below is the script:

// JavaScript Document
<!-- TWO STEPS TO INSTALL RANDOM IMAGE:
/* 1. Copy the coding into the HEAD of your HTML document

[code]....

View 1 Replies View Related

Checking If Content In Div Is Scrolled To Top Or Bottom?

Oct 30, 2009

How can I check if the content in a div is scrolled all the to the top or bottom?

I want to make a function for each to show / hide some custom up and down arrows.

View 1 Replies View Related

Alternative To Document.write To Replace Image On Page - Click Event That Replaces An Image On Page With New Image

Aug 29, 2010

Im trying to have a click event that replaces an image on the page with a new image that has been selected randomly from an array. I have solved PART of this already (can get the random image to appear).

However, instead of appearing on the page where the old image was, the new image appears in a blank page.

My research indicates that this blank page location-problem is a result of using document.write in the Function. Therefore, I know I need to find a different way to accomplish this, but am failing miserably.

I have been trying for hours and hours and HOURS to figure out proper syntax for accomplishing this via elements, functions, variables and mootools.

A bit of my research:

-I found this---but havent figured out how to implement it in my scenario:

Source: [url]

-I found this---but havent figured out how to implement it in my scenario:

Code:

Source: [url]

View 4 Replies View Related

Redirect Script And Modify It So That It Rotates A Banner Image Instead Of Sending The User To Another Page?

Jun 12, 2011

want to take this redirect script and modify it so that it rotates a banner image instead of sending the user to another page. The script works so that if the window is out of focus for 10 seconds, it redirects. The images are defined in an external style sheet so I guess I'll have to move that into the document. Also, I want it to be able to work more than once with multiple images, like if the user opens a new tab, comes back, goes to a different tab, the image should change twice. Here's the script:

<script type="text/javascript">
var xScroll, yScroll, timerPoll, timerRedirect, timerClock;
function initRedirect(){

[code].....

View 3 Replies View Related

Jquery :: Expand Div Vertically Based On The Content

Mar 30, 2010

I am a noob when its comes to Javascript. I used two different coda like sliders for two of my sites, one of them expands vertically based on the content, the other does not. This is the site I created that will demonstrate the effect I am going for. It is a more robust coda script [URL] This is the site I am creating that DOES NOT expand vertically as I would like. I would like it to behave the same as the site above. (had to use a smaller script to function in wordpress CMS) [URL]

View 3 Replies View Related

JQuery :: Switching Content Between Two DOM Elements

Feb 21, 2011

ust started learning jQuery I'm trying to switch content of two DOM elements (I hope i've got the terminology correct there) but i'm struggling I can clone 'test_container_2''s content to ' test_container_1' but I would really like to switch the content '1' to '2' and '2' to '1' in one movement if possible, or if I can somehaow capture the content in a variable and then apply the variable to the other content of the container that would be fantastic.[code]

View 2 Replies View Related

JQuery :: Switching Tabs Through Content?

Nov 4, 2011

I use jquery to realize Tabs. As well, everything works fine.But here is my Problem If i try to open Tab_1 with an link on Content_4 nothing happens... Here is my Code:

jquery:
$(document).ready(function() {
$(".tabs a").click(function() {

[code]....

View 2 Replies View Related

JQuery :: Starting Content-switching On Timeout?

Oct 17, 2011

$('#nav li a').click(function(e) {
e.preventDefault();
$('#nav li a').removeClass('on');

[code]....

I need to do this, in addition to .click-binding, automatically; i.e., if no user-action by 15 secs I need this content-switching to start happening automatically; and also give 5 secs or so for the next div to show up (and hide div currently visible); how do I do this? like a slideshow, in other words, but switching divs (and doing the classes for the thumbnails)

View 2 Replies View Related

Switching DIV Content & Changing Link Appearance?

Apr 4, 2011

I am using HTML/Javascipt/CSS to maintain a page whereby the content of the page is switched when a user selects a link. An example of the code used is below for your better understanding:

The container in which all of the content is loaded:

Code HTML4Strict:
<div id="container">
<div id="sub1"></div>
<div id="sub2" class="hide"></div>

[Code]....

I need the page to detect which "sub" is being displayed and change the style of that particular link so the user can see which is the active link.

For instance - When the page loads, by default, all subs are hidden except sub1 which is today's content - So when the page loads, I want the "Today" link to be styled differently to the rest... However, if they then go on to click "Tomorrow" - as well as changing the content like it already does, I need it to also switch the style of the link from the "Today" link to the "Tomorrow" link.

View 5 Replies View Related

JQuery :: Make Animation Happen Only Vertically Instead Of Vertically AND Horizontally?

Jan 18, 2010

I'm using the following piece of code to create a link that, when clicked, uses jquery animation to slowly display a paragraph of text. The trouble is that the animation goes both vertically and horizontally, making it look a little too busy/cluttery. How can I tweak my code to make it only animate vertically?

View 2 Replies View Related

Click On Image And Show Content?

Mar 9, 2009

I have an image that when I click on it I want it to be hidden and content be shown. How can I do this?

View 3 Replies View Related

JQuery :: Split A Long HTML Content Into Small Divs?

Jun 4, 2011

I couldn't find any in Google or in the JQuery plugin library.I am trying to develop a book like app, where the site manage enters a text as long as he like into CKEditor textbox. the editor of course create tags around the text, and also there might be images inside the text.Then when someone chooses the book (bunch of DIV tags), he gets a book like js (this is working) and i need to populate the book with the content from the DB.

The problem is that i just can't figure a way to split the text into small chunks without destroying tags in the process.Is there a split app in jquery that does that?

View 2 Replies View Related

JQuery :: Dialog Not Working Well If Page Scrolled Down

Jul 22, 2010

I have a page which has large contents. If I open the dialog when page is has been opened, the dialog is fine and it closes well. Now, If I have opened my main page and scrool down to page and at the end there is a link for opening dialog, then the dialog opens to current window position and page is scrolled up to top. Now dialog has been opened but it is too below that I cant see it. I have tested that when we scroll down the jquery function takes the scrooled position as its top position and so opening popup for that relative position.

My code is.
$dialog.dialog({
title: title,
autoOpen: true,
width: width,
height: height,
modal: true,
resizable: true,
autoResize: false,
position: [0,0],
overlay: {
opacity: 0.3,
background: "black"
}}).width(eval(eval(width) - horizontalPadding)).height(eval(eval(height) - verticalPadding));
How I can open it on top of page?

View 1 Replies View Related

JQuery :: Page Loads Scrolled To The Bottom?

Dec 14, 2010

I was hoping there is some way to fix this, in IE7 and 9beta when you navigate between pages from my main nav the page loads scrolled to the bottom. It seems to be pretty random and will not reproduce consistently. Is there a way to force all anchors with a certain class to scroll to the top?

View 1 Replies View Related

JQuery :: Move Entire Body Content In A Div?

Sep 5, 2009

I want to display an element underneath (zindex) the entire body.so I want to move the entire dom from the body node into an absolutediv (top/left 0/0) , then create a new div with that element withlower zindex and place it under the "body" div.how do I best do that with jquery?

View 1 Replies View Related

JQuery :: Show An Element When The Page Is Scrolled To A Certain Position / Div?

Jan 10, 2012

How would I start to go about this? I'd like an <h3> to display and slide in whenever the user scrolls to a certain position on the page. For example, once a certain content div is 50% displayed in the viewport, I'd like the animation to fire.

View 2 Replies View Related

Click Event That Replaces An Image On Page With A New Image That Has Been Selected Randomly From An Array

Aug 29, 2010

Im trying to have a click event that replaces an image on the page with a new image that has been selected randomly from an array. I have solved PART of this already (can get the random image to appear).

However, instead of appearing on the page where the old image was, the new image appears in a blank page.

My research indicates that thisblank page location-problem is a result of using document.write in the Function. Therefore, I know I need to find a different way to accomplish this, but am failing miserably.

I have been trying for hours and hours and HOURS to figure out proper syntax for accomplishing this via elements, functions, variables and mootools.

A bit of my research:

I found this---but havent figured out how to implement it in my scenario:

I found this---but havent figured out how to implement it in my scenario:

Code:

Source: [url]

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved