473,395 Members | 2,713 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Image + Text swap question


Folks,
I'm still learning javascript - I've invested in a couple of books and
reading online as much as possible. I'm pretty sure what I am suggesting is
possible though I'm trying to weigh up the faults that might go with the
suggestion... all opinions welcome.

My question: I have a list of links that go to pages that have a similar
layout. Could I have a text swap, similar to what I've seen with image swaps
(or an image switch) whereby instead of loading a seperate page, text and
image is just replaced?

Other than not being accessable by non-javascript supported browsers, and
unlikely to be indexed by search engines, would I face any other
difficulties? For example, does an image/text swap have any browser
dependancy issues? If I know that all my clients will have javascript
switched on, I'm trying to figure out how much of my audience am I limiting
by having this 'feature' (my oldest clients that visit are IE5.5 and
Netscape 4 but these make up less than 2% of my entire visitors during the
past ten months).

Thanks...

--
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet?
Jul 20 '05 #1
3 6134
"Randell D." <yo**************************@yahoo.com> writes:
Folks,
I'm still learning javascript - I've invested in a couple of books and
reading online as much as possible. I'm pretty sure what I am suggesting is
possible though I'm trying to weigh up the faults that might go with the
suggestion... all opinions welcome.

My question: I have a list of links that go to pages that have a similar
layout. Could I have a text swap, similar to what I've seen with image swaps
(or an image switch) whereby instead of loading a seperate page, text and
image is just replaced?
Yes. I am not sure it is the best solution, but it is definitly technically
possible.

You have to decide on some design issues first, though.

Should all the text be loaded with the original page, or should the
new text be loaded on-demand when you click on a link? For images, it is
simple, they are always loaded when you need them, but text is not so
easily changed.

If you put the text in an iframe, you can change it by setting the src
property. It has all the problems of frames, though, and I wouldn't
recommend it for what you want.

If you fetch text on-demand, you need a way to fetch data from the
server without loading the page. Some browsers can do that with
special features like XML-Http-Request of IE and Mozilla
(<URL:http://jibbering.com/2002/4/httprequest.html>), but other browsers
need more work to fetch simple text.

If you load all the text with the original page, then switching the text
is only a matter of changing which text block is visible. Or, you can put
the text in Javascript and change the document content dynamically.
Other than not being accessable by non-javascript supported browsers, and
unlikely to be indexed by search engines, would I face any other
difficulties? For example, does an image/text swap have any browser
dependancy issues?
That depends on how you do it, and which browsers you target.

You should really decide the target browsers, and how the page should
degrade for other browsers, before anything else. It will limit what
approaches you can use.

Netscape 4 couldn't change the document structure dynmanically, but it
allowed you to change the contents of layers independently of the main
document. Other browsers that don't allow changes to the document structure
includes Opera 6, where your only choice is to load all the text at once
(or use iframes).

Text-swapping can be performed different ways:
- IE's innerHTML/innerText properties. While innerHTML is quite widely
implemented, it is non standard.
- W3C's DOM. Only supported in modern browsers, not Netscape 4 or IE 4.
If I know that all my clients will have javascript switched on,
How do you know?
Some statistics claim as many as 10% of people browsing without
Javascript.
I'm trying to figure out how much of my audience am I limiting by
having this 'feature' (my oldest clients that visit are IE5.5 and
Netscape 4 but these make up less than 2% of my entire visitors
during the past ten months).
As always, Netscape 4 is the worst offender. Not that you can blame it,
it was designed before the W3C DOM. You can blame people who still use
it and expect pages to work :).
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet?


My favorite is:
"Usenet isn't Jeopardy. The question before the answer, please."
:)

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #2

"Lasse Reichstein Nielsen" <lr*@hotpop.com> wrote in message
news:8y**********@hotpop.com...
"Randell D." <yo**************************@yahoo.com> writes:
Folks,
I'm still learning javascript - I've invested in a couple of books and
reading online as much as possible. I'm pretty sure what I am suggesting is possible though I'm trying to weigh up the faults that might go with the
suggestion... all opinions welcome.

My question: I have a list of links that go to pages that have a similar
layout. Could I have a text swap, similar to what I've seen with image swaps (or an image switch) whereby instead of loading a seperate page, text and image is just replaced?
Yes. I am not sure it is the best solution, but it is definitly

technically possible.

You have to decide on some design issues first, though.

Should all the text be loaded with the original page, or should the
new text be loaded on-demand when you click on a link? For images, it is
simple, they are always loaded when you need them, but text is not so
easily changed.

If you put the text in an iframe, you can change it by setting the src
property. It has all the problems of frames, though, and I wouldn't
recommend it for what you want.

If you fetch text on-demand, you need a way to fetch data from the
server without loading the page. Some browsers can do that with
special features like XML-Http-Request of IE and Mozilla
(<URL:http://jibbering.com/2002/4/httprequest.html>), but other browsers
need more work to fetch simple text.

If you load all the text with the original page, then switching the text
is only a matter of changing which text block is visible. Or, you can put
the text in Javascript and change the document content dynamically.
Other than not being accessable by non-javascript supported browsers, and unlikely to be indexed by search engines, would I face any other
difficulties? For example, does an image/text swap have any browser
dependancy issues?
That depends on how you do it, and which browsers you target.

You should really decide the target browsers, and how the page should
degrade for other browsers, before anything else. It will limit what
approaches you can use.

Netscape 4 couldn't change the document structure dynmanically, but it
allowed you to change the contents of layers independently of the main
document. Other browsers that don't allow changes to the document

structure includes Opera 6, where your only choice is to load all the text at once
(or use iframes).

Text-swapping can be performed different ways:
- IE's innerHTML/innerText properties. While innerHTML is quite widely
implemented, it is non standard.
- W3C's DOM. Only supported in modern browsers, not Netscape 4 or IE 4.
If I know that all my clients will have javascript switched on,


How do you know?
Some statistics claim as many as 10% of people browsing without
Javascript.
I'm trying to figure out how much of my audience am I limiting by
having this 'feature' (my oldest clients that visit are IE5.5 and
Netscape 4 but these make up less than 2% of my entire visitors
during the past ten months).


As always, Netscape 4 is the worst offender. Not that you can blame it,
it was designed before the W3C DOM. You can blame people who still use
it and expect pages to work :).
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet?


My favorite is:
"Usenet isn't Jeopardy. The question before the answer, please."
:)

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'


I'm curious - I knew someone with a similar name from Denmark - did you ever
work for HP?

Thanks for the prompt and detailed reply - I know my viewers have javascript
switched on because of a small clear.gif image that is downloaded
automatically, using javascript as a test. I can compare this with my
webalizer log files and things are almost the same (give or take under 2%) -
Fine for my purposes...

I do plan on offering a static 'non-javascript' version of my pages though
to cover my options....

The javascript portion includes "blurbs" - it relates to products and I
wasn't thinking of having the full text displayed - I was thinking of arrays
or objects (the latter I'm just begining to learn at the moment) to contain
the product name, the manufacturer and the first ten words (max 100chars)...
Each page refresh would change the order of the listing to give a rough
equality "top listing" thus not showing any single preference to one
manufacturer or product... I could have had it randomized via PHP but I
prefer a client-side engine...

And your Jeopardy signature - I like it and will remember it - someday it
will prove useful to me.... my girlfriend loves that show, regretably
because hearing the answer first really annoys me...

thanks for the help anyway...
Jul 20 '05 #3
"Randell D." <yo**************************@yahoo.com> writes:
I'm curious - I knew someone with a similar name from Denmark - did you ever
work for HP?
Nope, sorry (I wish!). According to Krak.dk, there are 60 people in
Denmark called "Reichstein", and one other called "Lasse Reichstein",
but he lives in Copenhagen, while I'm from Århus :)
I know my viewers have javascript switched on because of a small
clear.gif image that is downloaded automatically, using javascript
as a test. I can compare this with my webalizer log files and things
are almost the same (give or take under 2%) - Fine for my
purposes...
That is probably a fairly accurate measure. If it is only on the front
page, it won't measure people going directly to sub pages. Still, 2%
is a fairly high number of people to annoy ...
I do plan on offering a static 'non-javascript' version of my pages though
to cover my options....
.... so this is a good idea.
The javascript portion includes "blurbs" - it relates to products and I
wasn't thinking of having the full text displayed - I was thinking of arrays
or objects (the latter I'm just begining to learn at the moment) to contain
the product name, the manufacturer and the first ten words (max 100chars)...
Each page refresh would change the order of the listing to give a rough
equality "top listing" thus not showing any single preference to one
manufacturer or product... I could have had it randomized via PHP but I
prefer a client-side engine...
Random shuffling of an array is fairly easy to do.
I don't see why you prefer clientside computation to serverside PHP.
All other things being equal, computing on the server is safer. Nobody
has PHP turned off :)

The description doesn't tell me whether you only load the first 100 chars
of the description, or load it all and only display the 100 char blurp.

If you only have the blurp loaded, you need to fetch the rest of the text
after the page has loaded. So, this gives you two options:
iframes (and an ilayer for NS4)
or
XMLHTTPRequest for IE and Mozilla (with some other option for other
modern browsers, and probably still an ilayer for NS4).

The most widely usable solution is iframes. It can even work without
Javascript in non-NS4 browsers.

....
<a href="productX.html" target="description" onclick="return switchTo('X')">
Product X is a fine thingie which is just what you want ...
</a>
....
<img id="imageToChange" src="prod1.png">
<iframe name="description" src="product1.html">
<ilayer name="NSdescription" src="product1.html">
</ilayer>
</iframe>
....

For NS4, you will then change "document.layers.NSdescription.src"
appropriately.
And your Jeopardy signature - I like it and will remember it
It really isn't mine. I picked it up from somebody in a Danish
newsgroup. :)
- someday it will prove useful to me.... my girlfriend loves that
show, regretably because hearing the answer first really annoys
me...


It's definitly just a gimmick. I can't remember the last time I saw
somebody forget to give the answer as a question.

/L
--
Lasse Reichstein Nielsen - lr*@hotpop.com
Art D'HTML: <URL:http://www.infimum.dk/HTML/randomArtSplit.html>
'Faith without judgement merely degrades the spirit divine.'
Jul 20 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: Richard | last post by:
Considering the elemtary image swap routine in javascript: document.name.src="filename.gif" How would this be translated into PHP? So that if a visitor has js turned off, clicking on a...
3
by: Andy | last post by:
Can someone please help me with this problem? I don't know if this is possible in Java, so if it's not please point me in the right direction or to the right newsgroup! (I'm a newby to Java...
2
by: Cynthia | last post by:
I'm looking for javascript code that when I mouse over a menu item will display a picture elsewhere on the page. I know it exists, but the ones I've found so far just swap out the menu item in...
2
by: Matthew | last post by:
Hi all I'm looking for a solution that can be used in a calendar/gig guide scenario where each day is represented by a dot image. Now this dot must do the following 1. When the mouse goes...
12
by: Charlie King | last post by:
As I understand it, the use of FIR* to replace heading tags with images in visually enabled CSS browsers is now frowned upon on the basis that some screen readers will *nor* read back text that is...
6
by: Karl | last post by:
Hi, Ok so on a given page I have 4 text links: see it in black see it in blue see it in red see it in green using the standard swap image behavior, clicking on one of the above links
7
by: KiwiBrian | last post by:
On a web page I have a graphic for a Shopping Cart Submit button. It is within a form and working fine. I would like to perform an image swap to an identical graphic of a different colour when I...
3
by: seamlyne | last post by:
The first method I ever used for multiple state buttons was to create a graphic for each button for each state: AboutUs_on, AbooutUs_over, AboutUs_out, etc. That works great when there are just a...
10
by: cjparis | last post by:
Hello everyone. If anyone can give me a hand I would be gratefull Am doing a site which requires a moving element and have used DHTML to do it. Have a simple Browser detect script to sort IE...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.