Hi Guys
I need to build a component that integrates the jquery ui accordion and jquery ui tabs,like so : http://i.imgur.com/qLmXM.png
I need to build this on a existing jquery ui accordion,this is my only limitation.If no one has done this,could you tell me what the best approach would be.
Many thanks
Hi Guys
This is really getting to me now.I have a form that loads when the page loads.In my jquery
'ready' function I append a hidden to that form like so :
$("<input id='thehidden' type='hidden' name='thehidden' value='hiddenval'>").appendTo("#MenuForm")
When I check the form content with firebug i can see the element is added.
["$(\"#MenuForm\").children()"] is [div, input#thehidden hiddenval]
All good so far.When I submit this form and try and read the elemet again,i can't get the value of the new hidden val I added.
alert($('#thehidden').val())
is undefined
Any help would be appreciated
Hi Guys
var arr = new Array();
arr[0] = 'Departmental News'
arr[1] = 'Departmental News'
arr[2] = 'Another Cat'
arr[3] = 'Another Cat'
arr[4] = 'Departmental News'
alert(arr)
alert($.unique(arr))
In IE I get duplicates.
In any other browser only the unique ones
Any Ideas?
Hi Guys
I'm looking for a way to print / save flex graphs, preferably without changing the flex code.Is this possible to to from the client with some kind of JavaScript library.If I need to change the flex,is ALIVEPDF the way to go (converting content to pdf first) or are there simpler solutions to this.
Thanks
I'm looking for a component to manage programmaticaly added items (div's) in a parent container.The component should scale child items. Almost like a task bar,if a new item gets added it goes in the div container.