Venture Funding On the Upswing: Dot.com Redux? Community Center by Brian.oco … for new M&A opportunities. Much like a homeowner sprucing up the joint before putting his house on the market… 2 tabbed ajax menus Programming Web Development by eagled2 I am working on sprucing up a site i've been working on with some … Re: diference between methods,function and procedure Programming Software Development by verruckt24 … in modularizing code into logical pieces. They also help in sprucing-up (trimming) the code as a function can be called… Re: 2 tabbed ajax menus Programming Web Development by Airshow Eagled, Suggest you start by tracking down the code that initialises the second menu after it has been delivered via AJAX. Does such code exist? Is it called? Does it successfully attach Easy Tabs functionality to the second menu? [B]Airshow[/B] Re: 2 tabbed ajax menus Programming Web Development by eagled2 Thanks for the reply. According to the instructions that came with this script the 4 arrays in the javascript file are used to specify more than one menu. The link name and link content arrays specify the menu name and link name. The other 2 arrays specify information for how to process that menu. Then in the php file I specify the menu and link … Re: 2 tabbed ajax menus Programming Web Development by Airshow Eagled, [QUOTE=eagled2;1352280]I know very little about javascript but the part of the .js file that processes it seems to be written to make as many menu's you specify in the settings section.[/QUOTE] I'm sure that's right but I think the problem is that each secondary menu delivered by ajax needs to have easyTabs functionality attached to it [… Re: 2 tabbed ajax menus Programming Web Development by eagled2 I don't know anything about now javascript is formatted but I believe the code at the bottom of the .js file is programmed to automatically add menus and links for extra menus. I tested this theory and have figured out why the second menu is not working properly. To test this I compiled the current code i'm using into a single html file keeping… Re: 2 tabbed ajax menus Programming Web Development by Airshow Eagled2, Good detective work. All you need now is to master the escape character "\". In both javascript and php (and other languages), if you need to put quotes (or a single-quote used as an apostrophe) inside a quoted string of the same type (single- or double-quotes), then you must escape it or the language parser will see the… Re: 2 tabbed ajax menus Programming Web Development by eagled2 Thank you very much. That's exactly the type of answer I was looking for. It works like I want it to now. The only thing I don't understand about it now is why the easytabs paramaters have to be enclosed in single quotes and everything else in double quotes. Re: 2 tabbed ajax menus Programming Web Development by Airshow Eagled, If you think about it, you already know the answer, or at least 90% of it from my earlier answer. Consider this fragment of the served page: [CODE=html] ... onmouseover="easytabs('2', '1');" ... [/CODE] This is an HTML string containing a javascript statement, and the same rules apply as they did in php (which generated … Re: 2 tabbed ajax menus Programming Web Development by eagled2 I never thought of it that way. Now that you mention it it makes perfect sense.