[jQuery] Re: jquery code works with firefox but not ie.

2009-07-23 Thread jakiri
I had the same problem only with internet explorer and only when I use a xml generate with php. Using a standard xml there are not problems. I solved using header('Content-Type: text/xml'); as has already explained and also adding before that instruction the command ob_clean() that remove white

[jQuery] my first plugin, help to clear my dirty code

2009-06-28 Thread jakiri hutimora
ated(false,true);         sl.animate(                 {                     bottom: menuPosition.Min                 },                 {                     duration: 500,                     complete: function(){                         $.Slider.setObjIsMenuAnimated(false,false);                     }                 }         ).fa

(Work around Solution) Re: [jQuery] Re: call a method outside a jquery object

2009-06-28 Thread jakiri hutimora
I am not sure it is an elegant solution, any advice is welcomed. regards -- jakiri hutimora ha scritto: Hi Matt, otherwise the script doesn't work. :/ I didn'

[jQuery] Re: call a method outside a jquery object

2009-06-26 Thread jakiri hutimora
closeMenu(){ doSomething(x); } } ); Matt Kruse ha scritto: On Jun 26, 12:44 pm, jakiri hutimora wrote: Actually I really need to access to a method inside another function. $( function(){ functio

[jQuery] Re: call a method outside a jquery object

2009-06-26 Thread jakiri hutimora
ent  $(         function(){                 var x = "Hello world";                 function openSlideMenu(){                         //open the menu                 }         } ); What do you think? Please, I am very interested to the long short story, where can I read it? Cheers jakiri h

[jQuery] Re: call a method outside a jquery object

2009-06-26 Thread jakiri hutimora
Thanks Eric, Actually I really need to access to a method inside another function. I created a simple example however my aim is calling a "public method" (let me use public) that has been defined inside a function like that $(         function(){                 function openMenu(){        

[jQuery] Re: Scrolling a group of accordions

2009-06-26 Thread jakiri hutimora
here you have the accordion. http://docs.jquery.com/UI/Accordion I suppose you need to find a condition that allows you to scroll the accordion list when the user scroll on the accordion. Otherwise you may use an iframe but it isn't so elegant has the first case. Steve Hueners ha scritto: