[jQuery] (validate) - Documentation fix for highlight/unhighlight

2009-12-21 Thread dirk
).removeClass(validClass); }, unhighlight: function( element, errorClass, validClass ) { $(element).removeClass(errorClass).addClass(validClass); } Thanks, Dirk

[jQuery] load script regarding to value of textfield

2009-01-12 Thread dirk w
;SearchTerm" in the js line, it should be replaced with the value of the textfield. thank you very much in advance! dirk

[jQuery] Re: load script regarding to value of textfield

2009-01-12 Thread dirk w
llback=showMyVideos&max-results=7&format=5">'; > >   // ajax functions to call $.ajax, $.load, $.get, $.post > > }); > > - > Read jQuery HowTo Resource  -  http://jquery-howto.blogspot.com > > On Mon, Jan 12, 2009 at 1:49 PM, dirk w wrote: > > > hello communi

[jQuery] Re: load script regarding to value of textfield

2009-01-13 Thread dirk w
ides anyone? On 12 Jan., 17:43, dirk w wrote: > thanks a lot for your help! > is it possible to additionally explain me how i can execute this link > through the ajax functions? that would be great! > > thanks in advance > > On 12 Jan., 15:53, "jQuery Lov

[jQuery] ajax :: how to load script

2009-01-15 Thread dirk w
lem is: how do i execute this java script line to get the data. this loading must happen without reloading the whole page. is this possible with jquerys ajax plugin? thanks a lot in advance! dirk

[jQuery] Re: ajax :: how to load script

2009-01-15 Thread dirk w
> This will place any text returned from the request into #element, but > will also scan for and execute any script tags in that returned data. > > Hope that helps. > > On Jan 15, 9:41 am, dirk w wrote: > > > hello community, > > i've got a textfield and a s

[jQuery] forms :: fire javascript on enter (without reloading the whole page)

2009-01-30 Thread dirk w
27;).val() + '&alt=json-in-script&callback=showMyVideos&max-results=7&format=5'; $.getScript(url); }); your help is much appreciated. i really love jquery, especially because of it's community, never got so great responses than in this user group. thanks in advance! dirk

[jQuery] Re: forms :: fire javascript on enter (without reloading the whole page)

2009-01-30 Thread dirk w
hey bohdan, thanks, works fine! dirk On 30 Jan., 11:51, Bohdan Ganicky wrote: > Hi, > just stick with the submit event. It's fired either when user presses > Enter or clicks the submit button: > > $("#searchForm").submit(function() { >         var url = &#

[jQuery] having a problem with ' and strings

2009-02-04 Thread dirk w
' in the string, like "doesn't that look funny..." in this case my output get's completely messed up. is there a more reliable way to use ' and " ? any ideas how i could prevent ' to crack this up? thanks in advance dirk

[jQuery] Re: having a problem with ' and strings

2009-02-04 Thread dirk w
lace all " to be ' and all ' to be " > > Personally, all my selectors use " > then functions use ' > > $("#searchResultList").append(' thumbnailUrl + '"       class="thumbnail" alt="' + titleFull + ' (' + min

[jQuery] caching getScript() :: ajax question

2009-02-10 Thread dirk w
hello, i am getting a script which calls back some json to my function "showMyVideos". during my research in this group i read that getScript wouldn't cache. in my case i would like to add some cache (lazy loading) to my getScript function since it isn't necessary to update a already searched resu

[jQuery] Re: caching getScript() :: ajax question

2009-02-11 Thread dirk w
any ideas? On 10 Feb., 17:31, dirk w wrote: > hello, > i am getting a script which calls back some json to my function > "showMyVideos". > during my research in this group i read that getScript wouldn't cache. > in my case i would like to add some cache (lazy loadi