[jQuery] Jeditable, async value

2008-11-27 Thread Viktor
// return old_value }, value); }, { submit : 'OK' }); how can I solve it? regards, Viktor

[jQuery] Re: best techniques to optimize loading of multiple libraries?

2008-09-03 Thread viktor
How do you minify a .js file? On Aug 29, 11:04 pm, Bil Corry <[EMAIL PROTECTED]> wrote: > Alex Weber wrote on 8/29/2008 10:15 AM: > > > i'd rather use packed then minified though :) > > Use minified, not packed.  Although a packed file is smaller, it's overall > performance is worse when compare

[jQuery] [autocomplete] Calling decodeURIComponent

2009-02-02 Thread Viktor Rutberg
alert or console.log, but that just gives me errors. If there would be a way of specifying like a global formatting function for the entire autocomplete plugin that would be great, since all data needs to be decoded before display. Any help on this is greatly appreciated. /Viktor Rutberg

[jQuery] superfish multiple menu

2009-04-06 Thread Viktor Iwan
Hello, i think this one is pretty simple to do.. i would like to have multiple superfish menu with different style.. any clue how to do this ? i'm new to jquery

[jQuery] How to make the first word bold.

2007-11-12 Thread Viktor Tarm
I am trying to make the first word of a sentence (a title from a generated feed) bold. TURN THIS: One Two Three INTO THIS: One Two Three I sure there is a way to do with jQuery, but I can't quite figure it out. I have tried something like this, with no luck: $("#title.a")

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread Viktor Tarm
"); > > var firstword = mystring.split(" ")[0]; > > myarray = jQuery.grep(stringarray, function(n, i){ > > return (i > 0); > > }); > > $("div#title a").append("" + firstword + " > > ").append(myarray.join("

[jQuery] Re: How to make the first word bold.

2007-11-13 Thread Viktor Tarm
).each(function(){ > var me = $(this); > me.html( me.text().replace(/(^\w+)/,'$1') ); > }); > > or > > $('#links a').each(function(){ > var me = $(this) >, t = me.text().split(' '); > me.html( ''+t.shift()+

[jQuery] Re: How to make the first word bold.

2007-11-13 Thread Viktor Tarm
inks a').each(function(){ > var me = $(this) >, t = me.text().split(' '); > me.html( ''+t.shift()+' '+t.join(' ') ); > }); > > etc > > On Nov 12, 9:17 pm, "Andy Matthews" <[EMAIL PROTECTED]> wrote: