Scrolling News Was Working - Made Slight Change - Now Its Not
Dec 29, 2009
if you take a look at this site here [URL] you can see that it no longer scrolls or even displays content, but here [URL] it does. I'll bet there's a quick fix here, but not sure what it is.
View 11 Replies
ADVERTISEMENT
Feb 1, 2011
I want to make a news section on right side of my webiste's main page, it can in dreamweaver
View 2 Replies
View Related
Mar 22, 2009
on the top of the page with the pictures scrolling with news and links inside of them without using flash. like with ajax or something? and if it can be done... how would i go about it?
View 2 Replies
View Related
Dec 1, 2010
I want to use a news ticker where the lines of news fade in and out. This is a piece of the script:
$(function(){
$('.Rotator ul li').hide();
$('.Rotator ul li:first').show(); Rotate();
});
[Code]...
View 1 Replies
View Related
Oct 27, 2005
Does anyone have guidance as to how BBC News (http://news.bbc.co.uk/) generates its news ticker "Latest" that appears at the top of the screen? I am interested in creating something like this for my site.
View 1 Replies
View Related
Oct 13, 2011
how to change basic settings etc.But I have a problem changing the height of the following "news-ticker"
[URL]
You can see that I have different length of text in the testimonials and they appear now with fixed height. Where can I change the height so it's flexible to the amount of text. I've tried to changed it in the <li> and the <ul> but that didn't worked for me.
View 6 Replies
View Related
Aug 19, 2011
Why is the input type = radio on this page is not getting the value assigned to it after the user clicks on the related selection? Here is the page under development: dreamdates.com - TOTALLY FREE online dating service - You can see this by selecting a choice for "I am a: " Radio button selection. I have set up Javascript code, alert, which will tell you that that selection is "Undefined" even though you have selected male or female.
View 4 Replies
View Related
May 21, 2011
here is the page I'm working onhere is the jQuery in use
$(document).ready(function() { $('.error,.success').hide(); $("#send").click(function (){ $('.error,.success').hide("slow"); $.ajax({ url: 'add.php?lnk='+$.URLEncode($('[name=lnk]').val())+'&
[code]....
and in this code, it works, the call is made and text is added. in the other code I don't get a change at all. Not even in the database that add.php manipulates.
View 2 Replies
View Related
Dec 18, 2010
I hope you can help tweak a jQuery function...
If you look at this "fiddle":[URL]... (it was written by a friend of mine, Addy Osmani...you probably know him!)
[Code]...
View 2 Replies
View Related
Dec 2, 2009
I would like to create a link from one page to another. Easy - I know. But I would like that link to to take me to a certain part of the other page, specifically towards the bottom of the page.
Is that possible to do? And if so, what are the different ways I can specify where in the page to go? (i.e. what are the parameters that I can play with)
View 3 Replies
View Related
May 10, 2011
As you scroll down on: [URL] the bar menu CSS changes to blue based on what section you are at.Is this done via javascript?
View 1 Replies
View Related
Jul 24, 2010
The window is supposed to automatically scroll and move but it isn't working. (It was taken from a discontinued book called javascript in 24hrs) The javascript:
var pos=100;
function Scroll(){
if (!document.getElementById ) return;
obj=document.getElementById("thetext");
pos -=1;
if(pos < 0-obj.offsetHeight + 130) return;
obj.style.top=pos;
[Code]...
View 1 Replies
View Related
Sep 2, 2010
I want to disable scrolling using the mousewheel: Ive used this code document.onmousewheel=stop; but its not working... on Firefox its still scrolling on IE it says 'stop' is undefined
View 2 Replies
View Related
Dec 18, 2010
I have a free script I have downloaded and I can't figure out how to edit it so that I can change the color of the text to whatever I want it to be and also so that the length of the scrolling text (I am not sure if scrolling is the right term) can be changed. For some reason the text does not go all the way to the end of the page on the right it stops quite a way before.Here is the code:
<script language="JavaScript1.2">
<!--
/*
Typing Scroller
[code]....
View 8 Replies
View Related
Nov 3, 2010
I have a simple news ticker script that taking scrolling text, but i want that it should take contents from rss feed.
Here is the code
HTML Code:
How to converting simple ticker too rss ticker?
View 1 Replies
View Related
Jan 23, 2011
I'm curious if this is something simple. I'm working on a wordpress site using a plugin that is based off of the code from javascript kit called "highlighter scroller script". The plugin js is almost identical:[URL]..
What is causing it to wipe from left to right? I'm racking my brains trying to figure it out (and googling unsuccessfully it seems). All I'm trying to do is make it wipe instead from right to left. I'm sure it's something simple, but I don't know which variable to change.
View 1 Replies
View Related
Apr 1, 2011
I have to design a website for my friend and I have no clue how to change the menu image if the page scrolls down, for example If the person clicks on a submenu it will take them to a specific anchor within a page, I have setup a custom jquery scroll bar so all the contents are in the Div that is scrollable.
If you can see that if you click on the submenu which is 2nd hand and repair and rebuild the content will scroll to specific area, but the clients don�t know there location as once the sub menu is clicked the original submenu image appears.So I want them to be able to see if they selected the 2nd tab, the button will stay highlighted and if they scroll down the page when they reach another heading with an anchor the corresponding submenu tab becomes highlighted.
View 1 Replies
View Related
Apr 19, 2011
Having trouble getting this plugin to work. jparallax - see here for more info [URL]...Now I have this plugin working separately, on its own page, just fine. see here -
http://bit.ly/hPpSAC But when I went back, to my own page, and tried to incorporate it into the background of my site, I was able to get the look fine, but the movement isn't working. see here -
http://bit.ly/ee52Iv I've tried everything I could to get it working.. Maybe someone here could troubleshoot?
View 3 Replies
View Related
Mar 13, 2009
I'm attempting to implement some deep-linking in my simple AJAX application by setting location.hash, and I've run into two problems:
1) Sometimes setting location.hash seems to send the window on both IE and FF to scroll to the top of the page. I do not want any scrolling to occur. The location.hash change happens in a function which is triggered in an onclick event.
2) Changing location.hash creates a history entry on FF (not on IE)... that's pretty cool for FF, but in this case I do not want a history entry created. How can this be avoided?
I found an example which seems to have avoided both these problems, but cannot decipher the pertinent code: [URL]
View 6 Replies
View Related
Feb 17, 2011
jQuery - Scrolling browser Window. I have two demos of scrolling page content with jQuery.
This one - [url] is scrolling the contents inside a container and it works as I wanted on Mac/PC
Code:
I need the same effect as above but I need to scroll the whole browser window.
I have a demo here - [url]
Code:
Problem here is on the Mac the transition are jumpy and it seems to flash the first yellow div before sliding up or down. Testing on a PC it will slide down but won't slide up. How can I get the whole browser window to slide up and down with a smooth transition.
View 1 Replies
View Related
Sep 15, 2011
If you peruse my site here, you'll find that in IE8 (and maybe higher), the rotating banner at the top flashes the little thumbnails and the background a bit when visiting a new page. It doesn't do this in FF or Chrome Is there anything that can be done to fix this? I reviewed the documentation for the script and tried tinkering as much as I could, but can't get rid of the flashing.
View 1 Replies
View Related
Feb 1, 2011
I noticed a slight usability bug with blockUI. when we block, with a message div - the page is still scrollable. however the message div that comes up, stays where it is, as user scrolls the page. So for example, if the vertical screen resolution is low, the user can not see the bottom of the message div, and in my case the message div has some appept or cancel buttons, which makes my UI unusable?
Are there any workarounds to this solution, other then placing the message div to the top of the page?
View 1 Replies
View Related
Aug 6, 2010
im searching for a plugin/code example for text scrolling. I got some text in a <div> if text is longer than for example 300px it gets cut and is scrolling from start to end, stops for a second and then scrolls back, stops and all over, and if its not long enough than 300px then just displays normaly. Something similar to the Song name scrolling inin anyMP3 player.
View 2 Replies
View Related
Jul 23, 2001
can anyone recommend a good dhtml vertical pausing news ticker which works on macs as well as pcs?
View 2 Replies
View Related
Sep 10, 2011
I'm trying to figure out a way that, when a user scrolls down the page and hits the footer (#footer), a div's CSS position changes from fixed to absolute. The main reason is because I don't want the div that if fixed to go over the footer - I want it to just stop scrolling with the page and stay put.
I'd assume this is done with JavaScript, but I have no idea where to start. If someone could give me a basic code that I can then modify that would be awesome!
View 1 Replies
View Related
Sep 30, 2009
i wanna make animated news bar like the one in the top of site alibaba.com, so how can i do that,
View 1 Replies
View Related