[jQuery] Re: javascript analogue of php serialize()

2008-07-03 Thread markus.staab
http://docs.jquery.com/Ajax/serialize On 3 Jul., 14:49, Julian <[EMAIL PROTECTED]> wrote: > Hello! > I need javascript function analogue of php serialize(). > So far, use serialize function from:http://javascript.ru/php/serialize > , which not work with Internet Explorer, and opera, with Firefox

[jQuery] Re: Question about function objects vs object literals?

2008-06-30 Thread markus.staab
Hi, Method B & C work, because you call the function and don't pass it to blur(). Regards, Markus On 30 Jun., 20:18, Oltmans <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm stuck in a situation where I need help. Any help will be highly > appreciated. I've created an object, after creating the obj

[jQuery] Re: determine if form still "under focus"

2008-06-28 Thread markus.staab
maybe you should use the onmouseout event handler On 28 Jun., 12:34, "C. Feldmann" <[EMAIL PROTECTED]> wrote: > Hello! > > I have bumped into a problem that I have been trying to solver for > hours now, without any sign of hope. > > I have a form which is loaded into a div through an ajax call. I

[jQuery] Re: Passing this to a function

2008-05-09 Thread markus.staab
you can do it, but this is a usual dom object, not a jquery instance... simple pass the object to through Jquery like ref = JQuery(ref); On 9 Mai, 15:32, "mac.gill" <[EMAIL PROTECTED]> wrote: > Can i pass 'this' to a custom function from an event handler > eg. > > $('p').('click',function() { > >

[jQuery] Re: Giving more parameters to the async load function ?

2008-05-02 Thread markus.staab
Maybe a callback function (given some usefull context parameters..) which produces the url could do the trick.. On 2 Mai, 17:24, jayg <[EMAIL PROTECTED]> wrote: > Thanks Jörn, > I will post code here when I get a good solution. However, I know the > treeview is being worked on in the UI project

[jQuery] Re: calling a function before a form is submitted

2008-04-28 Thread markus.staab
with your code above you trigger the submit event, but what you want is to listen to it.. so you should use $("form").bind("submit", ); see http://docs.jquery.com/Events/bind#typedatafn On 28 Apr., 09:16, gregarious <[EMAIL PROTECTED]> wrote: > Hi Mike, > > thanks for your help. I just mana