B
bar
I need a way to have an Ajax slide appear simultaneously next to the
exposed accordion section when I click on the accordion tab. here is
the site: http://weddinginvegas.com
I've already tried placing it here. <h3><a href="#">Section ?</a></h3>
it does not activate.
I've tried creating functions and placing them there, still to no
avail. Please help, anyone?
The users just don't see the buttons to click on.
Here is the simplified code:
site: http://weddinginvegas.com/
This is the Head content for the index.php or similarly the index.html
file.
<link href="JQ2/css/wedding-theme/jquery-ui-1.8rc3.custom.css"
rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="JQ2/development-bundle/
jquery-1.4.2.js"></script>
<script type="text/javascript" src="JQ/js/jquery.validate.js"></
script>
<script type="text/javascript" src="JQ2/js/jquery-
ui-1.8rc3.custom.min.js"></script>
<?php require ("inc/ieFix.html"); ?>
<script type="text/javascript">
$(document).ready(function(){
$(".akidna").accordion({
active: 9,
header: "h3",
collapsible: false,
fillSpace: true,
autoHeight: true
});
});
</script>
<script type="text/javascript" src="js/revisedSlickSlideShowWide.js"></
script>
<body>
<div class="akidna" style="z-index: 29;">
<div>
<h3><a href="#">Section 1</a></h3> // first tab clicked opens the tab
below
<div>
<a href="#cx-01">Our Packages</a> // click to exposes slideshow slide
</div>
</div>
<div>
<h3><a href="#">Section 2</a></h3> // first tab clicked opens the tab
below
<div>
<a href="#cx-02">Our Packages</a> // click to exposes slideshow slide
</div>
</div>
<div>
•
•
<h3><a href="#">Secton 11</a></h3> // first tab clicked opens the tab
below
<div>
<a href="#cx-11">Our Packages</a> // click to exposes slideshow slide
</div>
</div>
</div><!-- end class akidna -->
Q. How do I eliminate the <a href="#cx-?">Our Packages</a> and have it
being invoked while the section is exposed simultanously?
</body>
exposed accordion section when I click on the accordion tab. here is
the site: http://weddinginvegas.com
I've already tried placing it here. <h3><a href="#">Section ?</a></h3>
it does not activate.
I've tried creating functions and placing them there, still to no
avail. Please help, anyone?
The users just don't see the buttons to click on.
Here is the simplified code:
site: http://weddinginvegas.com/
This is the Head content for the index.php or similarly the index.html
file.
<link href="JQ2/css/wedding-theme/jquery-ui-1.8rc3.custom.css"
rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="JQ2/development-bundle/
jquery-1.4.2.js"></script>
<script type="text/javascript" src="JQ/js/jquery.validate.js"></
script>
<script type="text/javascript" src="JQ2/js/jquery-
ui-1.8rc3.custom.min.js"></script>
<?php require ("inc/ieFix.html"); ?>
<script type="text/javascript">
$(document).ready(function(){
$(".akidna").accordion({
active: 9,
header: "h3",
collapsible: false,
fillSpace: true,
autoHeight: true
});
});
</script>
<script type="text/javascript" src="js/revisedSlickSlideShowWide.js"></
script>
<body>
<div class="akidna" style="z-index: 29;">
<div>
<h3><a href="#">Section 1</a></h3> // first tab clicked opens the tab
below
<div>
<a href="#cx-01">Our Packages</a> // click to exposes slideshow slide
</div>
</div>
<div>
<h3><a href="#">Section 2</a></h3> // first tab clicked opens the tab
below
<div>
<a href="#cx-02">Our Packages</a> // click to exposes slideshow slide
</div>
</div>
<div>
•
•
<h3><a href="#">Secton 11</a></h3> // first tab clicked opens the tab
below
<div>
<a href="#cx-11">Our Packages</a> // click to exposes slideshow slide
</div>
</div>
</div><!-- end class akidna -->
Q. How do I eliminate the <a href="#cx-?">Our Packages</a> and have it
being invoked while the section is exposed simultanously?
</body>