× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



You got it, Kelly.

Instead of using JavaScript in an href, I prefer to use jQuery click events.

<a class='clickMe' href="#" data-id='care'>Click for Care</a>

....

$('body').on('click', '.clickMe', function (event) {
$("#content" ).load($(event.target).attr('data-id') + '.html');
});

Just a note.. using the body.on('click') instead of $('.clickMe').click()
here is used only because most of the web applications I create are very
dynamic. Using this method ensures that if you manipulate the DOM it will
be found. If you add an element with a class of "clickMe' into the DOM
dynamically it will not be picked up by .click().

There are many ways to do this, but I like assigning click actions instead
of javascript in hrefs (or onClick, etc).

Brad
www.bvstools.com


On Tue, Jul 7, 2015 at 9:51 AM, Kelly Cookson <KCookson@xxxxxxxxxxxx> wrote:

Hi Nathan,

Interesting.

Fixing the position of the navigation at the top of the page eliminates
the need for navigation links at the bottom of the page. That's something
I'll keep in mind as a design strategy.

I have mixed feelings about fixing the position of the theme statement
(i.e., the lighter blue bar with the text "Social hope is faith in the
ability of human beings to care for each other.") Fixing the theme
statement in place reduces the height of the main content area. To me, the
main content area is functionally more important to the site than the theme
statement. So, on the one hand, fixing the position of the theme statement
helps preserve the visual consistency of layout, but, on the other hand, it
reduces the real estate of the main content and thereby disrupts functional
prioritization of the layout. I would probably try some options like
loading the theme statement at the top of the main content (so it scrolls
with the main content) or dropping the theme statement on all pages except
the home page. However, I might not like these options once I see them.

I clearly see the maintenance benefits of loading the main content into a
page. The web site header information, theme statement, navigation links,
and footer information--basically everything except the main content--is in
a single HTML file. If I want to make changes to this information, I can do
it one time in one file. Conversely, the way my web site is currently set
up, if I want to make changes to a navigation link, I have to make the
change in multiple HTML files, one HTML file for each page of my web site.

Moreover, loading the main content into the page avoids the need for a
page refresh when the user clicks a link. The web site header, theme
statement, navigation and footer are loaded only one time when the user
visits the web site. The only thing that changes is the content of the DOM
element with the selector id #content (i.e., the main content of the page).
This eliminates any white flicker while waiting for a page to load because
there are no more page loads after the initial page load. It also reduces
the amount of data that has to be downloaded while browsing the web site,
making the site more efficient in terms of bandwidth and more
cost-effective in terms of data charges for users.

Let me see if I understand the details correctly.

In the HTML file, you coded this in the anchor tag for the page on Care:

href="javascript:ht_html('care.html');"

The argument 'care.html' is the name of an HTML file that contains only
the main content for the page on Care. The care.html file does not contain
any of the header, navigation, or footer information. When the user clicks
on this anchor tag, the JavaScript function ht_html is executed.

In the JS script, you coded the ht_html function:

ht_html(s) {
$("#content" ).load(s);
}

The "s" argument in ht_html(s) and load(s) is a variable that is replaced
by the name of the file provided in the code
javascript:ht_html('care.html').

So, when the user clicks the link for the page Care, JQuery grabs the
care.html file and loads it into the DOM element with the id selector
#content.

Is this basically correct?

Thanks,
Kelly

-----Original Message-----
From: WEB400 [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of Nathan
Andelin
Sent: Tuesday, July 07, 2015 1:25 AM
To: Web Enabling the IBM i (AS/400 and iSeries)
Subject: Re: [WEB400] 7 lessons from my first responsive web site


Hi Nathan,
By all means post a link. I would be interested in seeing what you did.


http://rd.radile.com/rdweb/SocialHope/index.html

I experimented (played) with the layout and styling; hopefully it's not
messed up.
--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400) mailing
list To post a message email: WEB400@xxxxxxxxxxxx To subscribe,
unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives at
http://archive.midrange.com/web400.

--
This is the Web Enabling the IBM i (AS/400 and iSeries) (WEB400) mailing
list
To post a message email: WEB400@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: http://lists.midrange.com/mailman/listinfo/web400
or email: WEB400-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at http://archive.midrange.com/web400.



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.