[jQuery] Re: Contiunuous Scrolling

2008-07-18 Thread EllisGL
What you could do is use DIVs to make a function that loops the movement with hover.. On Jul 18, 8:27 am, juro <[EMAIL PROTECTED]> wrote: > Hi, > > When using the jcarousel plugin -http://sorgalla.com/projects/jcarousel/ > - I would like the carousel to keep on scrolling until the end, as > long

[jQuery] Re: Getting "this" to work with my function and jquery

2008-07-18 Thread EllisGL
er: var asseturl = $("#"+assetid).attr("href"); On Jul 18, 12:14 pm, EllisGL <[EMAIL PROTECTED]> wrote: > Try this: > function deleteAjaxAsset(message, assetid) >  { >   var asseturl = $("#"+assetid.attr("href")); > >   alert

[jQuery] Re: "not" not working (newbie)

2008-07-18 Thread EllisGL
you have a syntax error $("p:not(.open)").click(function() { // Do something $(this).addClass("open"); }); On Jul 18, 11:02 am, Daniele <[EMAIL PROTECTED]> wrote: > Hi. I am doing a simple thing summarized as follow: when i click on a > paragraph i want it to do something only the first tim

[jQuery] Re: Getting "this" to work with my function and jquery

2008-07-18 Thread EllisGL
Try this: function deleteAjaxAsset(message, assetid) { var asseturl = $("#"+assetid.attr("href")); alert(asseturl); var confirmDelete = confirm(message); if(confirmDelete == true) { if(action == "delete") { $.ajax( { type : "POST", url : asseturl + "?ac

[jQuery] Re: jQuery Doing Comet

2008-06-25 Thread EllisGL
Here's the XHTTP version: This version is not so memory friendly. Any help getting the memory usage down would be great. index.html http://www.w3.org/ TR/xhtml11/DTD/xhtml11.dtd"> http://www.w3.org/1999/xhtml";> jQuery Comet demo http://ajax.googleapis.com/ajax/ libs/jquery/

[jQuery] jQuery Doing Comet

2008-06-25 Thread EllisGL
Here's some code I came up with for COMET based stuff. It has ways of dealing with memory usage! index.html http://www.w3.org/ TR/xhtml11/DTD/xhtml11.dtd"> http://www.w3.org/1999/xhtml";> jQuery Comet demo http://ajax.googleapis.com/ajax/ libs/jquery/1.2.6/jquery.min.js">