Client-Side menu separators with jquery

Have you ever pulled your hair about separators between menu entries on websites? Or just plain fell asleep? The task is trivial, but it is boring. Depending on what server side solution you are using, you end up with 4 to twenty lines of code.

CSS3 would save us from that boredom, but there is almost no CSS3 support in today’s browsers. That is, there’s no native CSS3 support. We can do the same and more with jquery, which does have CSS3 support.

What I have is:
(this is the HTML as output to the browser).

<div id="mainmenu"><ul><li><a href="Impressum.html">Impressum</a></li><li><a href="UeberMich.html">Über Mich</a></li><li><a href="Moebel.html">Möbel</a></li><li><a href="Innenausbau.html">Innenausbau</a></li><li><a href="SonstigeLeistungen.html">Sonstige Leistungen</a></li></ul></div>

Which gives me this:

But what I want is:

I could inject conditions into my server-side code to insert the bullets after all but the last menu entry (or before all but the first). But this has many drawbacks: usually, there’s more conditions involved in such menus like considering hidden pages if I am working in a CMS or similar, navigation states (which is the current page, etc), and so on. Also, it makes the HTML cluttered and charges the server-side code with view-dependant details. The server-side code in this case would be considered UI-driven anyway, so this is not inherently bad. But it’s still nicer not to.

Anyway, there’s a rather easy way with jquery (if you are new to jquery, just grab jquery.js from jquery.com). The relevant code:

<script src="jquery.js" type="text/javascript"></script><script language="javascript" type="text/javascript">$(document).ready(function(){$("#mainmenu ul li:not(:last-child)").after("<li class='bull'><b>•</b></li>");});</script>

Explanations:
The $(document).ready function is executed after the DOM is completely available.
$(”#mainmenu ul li:not(:last-child)”) selects DOM elements with a CSS3 selector, in this case all li elements that have a ul as their parent and #mainmenu as their grandparent and that are not the last child of their parent.
after(”<li class=’bull’><b>•</b></li>”) simply injects the HTML after each element in the collection just selected.

The CSS, for completeness’ sake:

#mainmenu{width: 800px;border: 1px solid #006633;border-left: none;border-right: none;background-color: #e5e5e5;}#mainmenu ul{display: block;margin: 0;margin-left: auto;margin-right: auto;height: 18px;}#mainmenu ul li{display: block;float: left;margin-left: 10px;margin-right: 10px;}#mainmenu ul li.bull{margin-top: 2px;}#mainmenu ul li a{display: block;text-decoration: none;color: #006633;background-color: #e5e5e5;font-size: 14px;}

cheap abilify
acai plus
cheap accutane no prescription
discount aciphex
no rx acomplia online
Articles and actonel use in young women
actos information
aleve no prescription
Allegra De Vita
alli coupon
altace generic
acne antibiotics
off label use for aricept
arimidex nandrolone
spiritual benefits of ashwagandha
astelin tablets
buying atacand
no rx atarax
cheap augmentin no prescription
no rx avandia online
buy avapro
avodart canada
bactrim resistant uti
benadryl for cats
benicar surgery
biaxin usa
buspar xr
buy cardizem online
buy Celebrex in USA pharmacy
celadrin usa
no rx dog cephalexin
buy canada cialis
generic cipro online
Tonalin Cla Side Effects
clarinex drugs
claritin side effects
clomid and males
novo clonidine
colchicine and digestive problems
Coreg doseage
vitamin K and coumadin
cozaar price
creatine medicine
crestor and hair loss
cymbalta + hair loss
cymbalta india
depakote weight gain
diclofenac xr
differin india
diflucan medicine
diovan 80
side effects of doxycycline
side effects of effexor xr
buy flagyl 500 mg free prescriptions
flomax fda
glucophage description
compare hair loss product htm
Hangover Cure
hoodia p57
keppra withdrawal
buy lamictal
lamisil pills
lasix taking
levaquin pills
free levitra samples
lexapro reviews
lipitor description
Lisinopril 20
Side Effects of Taking Melatonin
developing gestational diabetes while taking metformin
methotrexate fda
micardis discount
no rx mobic online
motrin pills
msm gloucester
discount neurontin
nexium substitute
buy nizoral
does nolvadex burn fat3f
omnicef stool
does paxil work
how to use penis extender
PHENTERMINE
generic phosphatidylserine online
plan b withdrawal
order plavix online
pravachol joint pain
prednisone rx
mexico premarin
how to discontinue prevacid
prometrium mg
Cheap Propecia
provera canada
generic prozac
reglan price
buying reminyl
rimonabant side effects
risperdal consta
generic rogaine
cheapest seroquel
singulair allergy
buy skelaxin
stop smoking western australia
strattera for depression
stress relief desktop game
cytomel and synthroid
tetracycline medicine
topamax dosage for weight loss
cheap toprol no prescription
toradol rx
tramadol pills
trazodone tablets
tricor tablets
trileptal for depression
ultracet apap
valtrex drugs
buy viagra online inu
Prescription Drug Voltaren
vytorin medicine
weight loss canada
wellbutrin no prescription
yohimbe and weight loss
zantac otc
vision problems when taking Zetia
Prescription Drug Zestoretic Recall
buy zithromax
effexor with zoloft
zovirax canada
online zyban
taking haldol and zyprexa together
Zyrtec 10MG
online zyvox

Comments are closed.