I have a webapp which has Menu's.
When I do a View Source on the webpage I get something like
<script>menuStart(ACTION_NAV_MENU,'New E<u>x</u>ntry','','New
Entry','');
registerMenuShortcut('X');
menuItem('Choose by Coverage Type','javascript:void(0)',true,'Choose
by Coverage Type','NewExposureMenuItemSet_ByCoverageType');
menuSubItem('A','javascript:void(0)',true,'A','A');
menuSubItem('Accidental Death Benefits -
PIP','javascript:Events.invokeEvent(\'5_531_act\',
true)',false,' Benefits - PIP','Accidental - PIP');
menuSubItem('Auto Death Benefits -
PIP','javascript:Events.invokeEvent(\'5_532_act\',
true)',false,' Benefits - PIP','Auto Death Benefits - PIP');
menuSubItem('Accidental Death & Dismemberment Benefits -
Bodily Injury','javascript:Events.invokeEvent(\'5_533_act
\', true)',false,'Accidental & Dismemberment Benefits -
','Accidental Death & Dismemberment Benefits - ');
menuSubItem('Audio Visual Devices -
Vehicle','javascript:Events.invokeEvent(\'5_534_act\',
true)',false,'Audio Visual Devices - Vehicle','Audio Visual Devices -
Vehicle');
menuEndSubItems();
menuSubItem('B','javascript:void(0)',true,'B','B');
When I looked at the page using IE Toolbar, the exact thing that is
used to render the page looks more like ..
<SPAN> Content </SPAN>
How come View Source only shows menu constructs and not how the menu
is displayed.
What should I do to look at the source of the HTML like in SPANS not
the one in menuSubItems etc.
Please let me know.