accordian blues Programming Web Development by ricksvoid Hi everyone, I've created an accordian menu for a web application containing many headings, sub-headings … Simple accordian menu using jQuery Programming Web Development by hawx I am trying to create a basic a accordian style menu. Im guessing i have done 90% of the … Simple accordian menu using jQuery Programming Web Development by hawx I am trying to create a basic a accordian style menu. Im guessing i have done 90% of the … Re: accordian blues Programming Web Development by ashumiloff Check this out, hope it helps [url]http://thewebpepper.net/post/2010/01/31/Accordion-Menu-within-a-Nested-Master-Page.aspx[/url] accordian llink Programming Web Development by AARTI SHRIVAS <?php //session_start(); include("connection.php") ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head>… Re: accordian llink Programming Web Development by diafol Did you seriously just post 10,000 lines of code? Really?? Re: Simple accordian menu using jQuery Programming Web Development by diafol You want the javascript/ajax forum: [url]http://www.daniweb.com/web-development/javascript-dhtml-ajax/117[/url] [B]This is php.[/B] //By hide, you mean as in 'disappear' or 'close' (roll up). If they 'disappear' how do you get them back again? Re: Simple accordian menu using jQuery Programming Web Development by hawx oops Re: Simple accordian menu using jQuery Programming Web Development by mahmudulbd Can you upload your code to the server and send us the URL of the page so that we can see the real scenario? Re: Simple accordian menu using jQuery Programming Web Development by vibhaJ Hi if you check jquery UI [URL="http://jqueryui.com/demos/accordion/"]demo here[/URL]. Once you click on another widget rest will automatically closed. Random Problem... Digital Media UI / UX Design by <M/> …} * { margin:0; padding:0; list-style:none; } #basic-accordian{ border: 5px solid #EEE; padding: 5px; width: 700px; position: absolute…} em { color: #c30; } Html: <div id="basic-accordian" ><!--Parent of the Accordion--> <!--Start… How to Pass Model to Partial view and other Model to View will display Part Programming Web Development by Ahmed_39 …{ <a data-toggle="collapse" data-parent="#accordian" href="@item.Tabs.mainTabName"> <span… <a data-toggle="collapse" data-parent="#accordian" href="@Url.Action("View", "MainCats… [B]Bind Sql server database to jquery Acccordian panel[/B] Programming Web Development by sadafmukhtar i m unable to handle jquery accordian i want to bind it to ta database coz m … but........... m unable to connect and show daabse values in accordian dun know whther my connection is onot ok or my… colspan is messing up my table Programming Web Development by berserk …;td colspan="12"> <div class="accordian-toggle collapse" id="row<?php echo $rownumber…;td colspan="12"> <div class="accordian-toggle collapse" id="row<?php echo $rownumber… Re: expand and collapse based on individual table entries Programming Web Development by berserk …;td colspan="12" > <div class="accordian-toggle collapse" id="row"> <table…;thead> <tr> When I call that class accordian-toggle if i leave out the initial state "collape… links in c# text to database Programming Software Development by iamalex … finds it in the database and opens up in an accordian. In the text that it opens up which is the… Spry Tabbed Panels Display Problem Digital Media UI / UX Design by bru77 … are other spry elements on the pages aswell like an accordian and horizontal menu bar that displays no problem so I… error when check box is placed in accordianpane Programming Web Development by jamshed ahmed …;button"/> when this checkbox is placd out of accordian then it works fine but when it is placed withing… how to refresh master page from code behind?? Programming Web Development by hitro456 … have a web application with master page. master page has accordian (vertical) menu with favorites section where user can drag menu… expand and collapse based on individual table entries Programming Web Development by berserk …;td colspan="12"> <div class="accordian-body collapse" id="row"> <table… expand and collapse based on individual table entries Programming Web Development by berserk …;td colspan="12" > <div class="accordian-body collapse" id="row"> <table… Re: expand and collapse based on individual table entries Programming Web Development by berserk …;td colspan="12" > <div class="accordian-toggle collapse" id="row"> <table… Cant get nested bootstrap table working right Digital Media UI / UX Design by berserk … = 0; $u <= $rownumber; $u++) { ?> <div class="accordian-toggle collapse" id="row<?php echo $u… form submit without page refresh using ajax Programming Web Development by UK-1991 … page after he submits the form as there are bootstrap accordian tabs data is submitting properly and retriving as well no… Spry Accordian: Active Tab Depending on Current Date Programming Web Development by TheVendor Hello, I have a spry accordion that I have inserted in Dreamweaver with 5 tabs for Monday-Friday. How could I make the tab active depending on what day it is? i.e: So if its Tuesday the Tuesday tab will be active. [CODE]<div id="TabbedPanels1" class="TabbedPanels"> <ul class="TabbedPanelsTabGroup">… Re: Spry Accordian: Active Tab Depending on Current Date Programming Web Development by fxm Would javascript getDay() document.getElementById('id').focus() be any help? Re: Spry Accordian: Active Tab Depending on Current Date Programming Web Development by TheVendor Where would that code go? Re: Spry Accordian: Active Tab Depending on Current Date Programming Web Development by TheVendor So far I have.. My index.html: [CODE] <div id="TabbedPanels1" class="TabbedPanels"> <ul class="TabbedPanelsTabGroup"> <li class="TabbedPanelsTab" tabindex="0">Monday</li> <li class="TabbedPanelsTab" tabindex="1">Tuesday</li>… Re: Spry Accordian: Active Tab Depending on Current Date Programming Web Development by fxm [QUOTE=TheVendor;1186150]Where would that code go?[/QUOTE] Somewhere after the widget is defined [CODE]var d = new Date(); var dn = d.getDay(); [/CODE] Use dn to move the focus in the widget (or assign IDs and use [ICODE]document.getElementById(); [/ICODE]as I originally suggested). [Of course there are ways other than ID to access … Re: Spry Accordian: Active Tab Depending on Current Date Programming Web Development by TheVendor [QUOTE=fxm;1192870]Somewhere after the widget is defined [CODE]var d = new Date(); var dn = d.getDay(); [/CODE] Use dn to move the focus in the widget (or assign IDs and use [ICODE]document.getElementById(); [/ICODE]as I originally suggested). [Of course there are ways other than ID to access elements.][/QUOTE] Okay so I would put that …