[jQuery] How to show one image at a time using jquery cycle plugin?

2010-01-28 Thread jabarquez
Hi I have 8 images but before the cycle(scrollUp) start, the first 4 images will display and then it move up one image at a time, and cycle through to the next image Like this: (img1-img2-img3-img4) then (img2-img3-img4-img5) then (img3-img4-img5- img6) then (img4-img5-img6-img7) then

[jQuery] How to scrollup one image at a time using jquery cylcle plugin?

2010-01-28 Thread jabarquez
Hi I have 8 images but before the cycle(scrollUp) start, the first 4 images will display and then it move up one image at a time, and cycle through to the next image Like this: (img1-img2-img3-img4) then (img2-img3-img4-img5) then (img3-img4- img5- img6) then (img4-img5-img6-img7) then

[jQuery] Re: backgroundPosition animation only works horizontal?

2010-01-28 Thread ektron
I have the same problem. I don't know whats wrong. Different style combinations didn't change anything - does anyone know the reason? greetings On 19 Dez. 2009, 22:05, stevescotthome st...@medportal.ca wrote: I have a background sprite that I want to animate vertical on hover, but it pops in

[jQuery] Re: Appended element is not draggable

2010-01-28 Thread phamquocviet
After append new tag, you have to bind the draggable() event again... On Jan 28, 1:42 am, Mircea i...@amsterdamsat.com wrote: Hi I have a container div with some spans. I had set the spans to be dragable and I want to do a function that on click will append a new span to my container and make

[jQuery] Re: jquery.stylish-select.js - problem in Internet Explorer

2010-01-28 Thread kimzzi
Hi, I also got the error and I managed to make it work :) In the stylish-select.js, a changed the following in the navigateList: original: $input.val(text).change(); changed to: $input.val(text); if(!$.browser.msie) $input.change(); Hope I could be of any help. Kim On 11 jan, 04:19,

[jQuery] (validate) namespace conflict w/ flowplayer tools?

2010-01-28 Thread shinronin
hi, i appear to be in the midst of troubleshooting a namespace conflict of the $() function. i'm using validate 1.4. i've attempted to use jQuery's noConflict() method, but i'm still missing something. link href=/c/jq/ui.all.css rel=stylesheet type=text/css / script

[jQuery] Re: Help with Column Navigation plugin (list page by selecting a element with particular ID)

2010-01-28 Thread Asharudeen
Hi, Is there any reply/idea for this email please. Awaiting for reply. Thanks. On Fri, Jan 22, 2010 at 12:50 PM, Asharudeen asharud...@gmail.com wrote: Hi, By using CloumnNavigation plugin ( http://plugins.jquery.com/project/column-navigation), Currently to list the tree list, we need

Re: [jQuery] Re: Help with Column Navigation plugin (list page by selecting a element with particular ID)

2010-01-28 Thread Nathan Klatt
On Fri, Jan 22, 2010 at 12:50 PM, Asharudeen asharud...@gmail.com wrote: Assume, if the li element and anchor element have unique IDs. Is there a way list by using their IDs. Or is there way to list the childs of the particular element. I'm not exactly sure what you're asking but, yes, you

[jQuery] Can JQuery tabs be used to intergrate different apps under 1 UI?

2010-01-28 Thread K Robert
I am lookng for a seamless solution to integrate 3-4 applications under 1 UI. Can JQuery support this? If so, are the any issues with navigation within the tabs as associated to the specific application? -- View this message in context:

Re: [jQuery] Re: Help with Column Navigation plugin (list page by selecting a element with particular ID)

2010-01-28 Thread Asharudeen
Hi, Thanks for your reply. Please go this URL: http://code.google.com/p/jquery-column-navigation/ In this a sample html example will be present. If we use the jquery column navigation plugin, while reload the page by default 'HomePage' and 'Contents' will be listed in the page. If we click on

[jQuery] Re: background mouseover fade effect

2010-01-28 Thread 1.am.W1z4rd
I've looked at the color plugin, but was unsuccessful, but I will have to try again, I guess. And there is an image behind it, if there weren't then this would be easy, and I would have never asked. Thanks all. On Jan 17, 6:49 pm, MorningZ morni...@gmail.com wrote: For sure check out the

Re: [jQuery] Implementing JCrop in Ajax Upload

2010-01-28 Thread brian
What do you mean by, the image selection doesnt work? Can you give a clearer description o fwhere you think the problem lies? Are you certain that the path sent back from the server is correct? What does alert(data.path) show? On Wed, Jan 27, 2010 at 8:21 PM, adi sembiring

[jQuery] A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread augur
I spent a couple days looking all over the web for how to do this well. I did some picking and choosing of methods, and I came up with this. It works best in Safari, then FireFox, and then Chrome. I have not tested in IE (do I have to?). It runs up to just over 20,000 lines of XML well, over that

Re: [jQuery] A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread Michael Geary
Are you required to use XML? Why not use JSON and avoid all the parsing? If you have to use XML I can make some suggestions to speed up the code a bit. But let's see if that is a requirement or not first. -Mike On Thu, Jan 28, 2010 at 10:32 AM, augur 312...@gmail.com wrote: I spent a couple

[jQuery] web hosting

2010-01-28 Thread DOTS D.O.Technology Services
which is best and cheap hosting solution according to you, also that should have .in domain support thanks dotsonline.in

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread augur
Funny thing is, my lead engineer said the same thing... Mostly this was an experiment to gain a better understanding of DOM outside of HTML. This is about as exciting as a SAX parser when it comes to speed (5sec in safari for 20K lines, slightly longer in FireFox, and noticeably longer in

[jQuery] Classis ASP integrating Async Treeview Plugin using getJSON. Stops working when using response.write [variable name] instead of simple JSON string

2010-01-28 Thread Jason Knight
Hi all, I've loved using jQuery these past few months, but I'm really pulling my hair our here. The following is the endpoint asp code that gets called to populate my treeview: % rootid = request.querystring(rootid) json = set Conn = server.CreateObject(ADODB.Connection) Conn.Open strProvider

[jQuery] Re: Classis ASP integrating Async Treeview Plugin using getJSON. Stops working when using response.write [variable name] instead of simple JSON string

2010-01-28 Thread MorningZ
I'd try: Response.ContentType = application/json right before the first writing On Jan 28, 2:32 pm, Jason Knight jason.t.kni...@gmail.com wrote: Hi all, I've loved using jQuery these past few months, but I'm really pulling my hair our here. The following is the endpoint asp code that

Re: [jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread Michael Geary
No offense, but that code is really frightening. Not your fault though. JSON is not only much faster than all this XML/DOM garbage, but it is *much* easier to understand and use too! If you're coding JavaScript, you need to know how to use ordinary JavaScript objects and arrays, yes? If you

[jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-28 Thread dirk.diggler
Anthony, The short answer would appear to be no, it's not compatible. To be fair, I'm running a slightly tweaked version of the plugin, so its entirely possible the incompatibility is something I introduced. This seems unlikely, though, since Firebug never even hits the breakpoint I've set in

Re: [jQuery] Re: Autocomplete plugin compatability with jQuery 1.4?

2010-01-28 Thread Richard D. Worth
The latest version is jQuery UI Autocomplete, and it is compatible with jQuery 1.4. You can find it in jQuery UI 1.8rc1: http://blog.jqueryui.com/2010/01/jquery-ui-1-8rc1/ - Richard On Thu, Jan 28, 2010 at 6:44 PM, dirk.diggler mitch.ab...@gmail.com wrote: Anthony, The short answer would

Re: [jQuery] Implementing JCrop in Ajax Upload

2010-01-28 Thread adi sembiring
I got it, i must chage the crop function declaration become function jCrop(f) { $(f).Jcrop({ aspectRatio: 1, setSelect: [0,0,150,150], onSelect: updateCoords, onChange: updateCoords

[jQuery] Re: A different approach to parsing XML, and a little help on processing attributes more efficiently

2010-01-28 Thread augur
Mike, Thanks so much for taking the time for writing this tutorial. I see how this is effective. I attempted to do similar things with the XML however... The Data Objects for JSON are much more simplistic structurally, and a little obtuse for reading visually. As I mentioned this simply is a

[jQuery] Galleria Plugin question

2010-01-28 Thread disbot4
Hi, I'm using the http://devkick.com/lab/galleria/ Galleria Plugin and I have 2 things I'd like to do. One of them somebody posted on here but it was never determined. I understand CSS pretty well, and I can understand some Javascript, but I can't program in it. 1. The first thing is I'd like