[jQuery] jQuery.ScrollTo 1.4 released

2008-09-10 Thread Ariel Flesler
Hi all After many months of no-plugin-development, I added a new version of jQuery.ScrollTo with 2 critical bug fixes and some nice features. Here you can read the whole list of changes and also get the last version: http://flesler.blogspot.com/2008/09/jqueryscrollto-14-released.html If you

[jQuery] Re: superfish menu, Error: $("ul.sf-menu") is null

2008-09-10 Thread oconshaw
Thank you so much. I really appreciate your help on this. Best, --Shawn On Sep 10, 7:57 pm, "Joel Birch" <[EMAIL PROTECTED]> wrote: > Yes, on the "TEST5" page there is an enormous mess of namespace > pollution from the form module. The dollar sign shortcut is being > stolen. You can either use

[jQuery] Re: Conceptual problem. Is posible with Jquery??

2008-09-10 Thread Richard D. Worth
Take a look at jQuery UI Selectables: Docs: http://docs.jquery.com/UI/Selectables Demos: http://ui.jquery.com/repository/latest/demos/functional/#ui.selectable If you decide to use it and have further questions, there is a dedicated jQuery UI Mailing List: http://groups.google.com/group/jquery-u

[jQuery] Re: “Superfish” - IE issues

2008-09-10 Thread Joel Birch
Hi Dave, I'd say just remove transparency for IE. I think you are walking into a mine-field attempting that. That said, I haven't tested it. Would be nice to see a page demonstrating your issue. Joel Birch.

[jQuery] ToolTip Bassistance. Not working as expected ...

2008-09-10 Thread shapper
Hello, Please check my form: http://www.27lamps.com/Beta/FileStyleValidate/FileStyleValidate.html Why does the ToolTip over the Title input shows on the bottom? And why the ToolTip for the input of type file does not even show? How can I solve this- Thanks, Miguel

[jQuery] Re: Superfish - changing background color and text colors

2008-09-10 Thread Joel Birch
Hi Erick, Here is a working version of your examples. You should be able to see the solution from this. Look in the menu's CSS file and find the part commented as: /*HERE IS THE KEY CSS*/ http://users.tpg.com.au/j_birch/ric Hope this solves your issue. Joel Birch.

[jQuery] Re: Working on website trying to make a list.

2008-09-10 Thread Brad
Aaron, Normally you control that output server-side by limiting the result in your SQL. Look at help for the SELECT statement and the LIMIT clause. If you really want to send everything back at once, you'll need for PHP to output the table HTML so that it looks something like this skeleton.

[jQuery] Re: Working on website trying to make a list.

2008-09-10 Thread Brad
Aaron, Normally you control that output server-side by limiting the result in your SQL. Look at help for the SELECT statement and the LIMIT clause. If you really want to send everything back at once, you'll need to set up the table HTML so that it looks something like . ...

[jQuery] Re: JQuery Form Plugin and json

2008-09-10 Thread Felix Halim
Does jQuery provides a way to convert to JSON string? Felix Halim On Tue, Sep 9, 2008 at 10:22 PM, Mike Alsup <[EMAIL PROTECTED]> wrote: > >> > I'm using the jQuery Form PlugIn(http://www.malsup.com/jquery/form/) >> > to handle my Forms. I like it, but I have a question about an >> > improvment:

[jQuery] Determining visible elements in an overflowed div

2008-09-10 Thread spaceage
Is there any way to use jQuery to determine which elements/items are visible within a div that is overflowing? ie. let's say I have a bunch of elements contained within a , where the elements are overflowing the .  I want to use localScroll to scroll vertically to a given element, but I'd li

[jQuery] Re: superfish menu, Error: $("ul.sf-menu") is null

2008-09-10 Thread Joel Birch
Yes, on the "TEST5" page there is an enormous mess of namespace pollution from the form module. The dollar sign shortcut is being stolen. You can either use jQuery() instead of $(), or you can look into jQuery's handy noConflict() function. Joel Birch.

[jQuery] Re: $.getJSON does not call call back function

2008-09-10 Thread Karl Rudd
$.getJSON is meant to get JSON objects, which are, at their heart, script elements that get run (hence the callback). Because they are script elements they can be loaded in from another domain. Unfortunately you can't use the usual $.load or $.ajax functions to load in yjr XML because they use th

[jQuery] Re: scrollTo anchor or class in div

2008-09-10 Thread pedalpete
I've upgraded to 1.2.6, and added an alert to show that scrollToshow() is actually being called. The Location.toString() error is a flash cross-domain xml error, nothing to do with jquery. I've set-up a test site for this at http://zifimusic.com/scrollTo?showid=1388718 but just to confirm, the

[jQuery] Slider menu like http://ui.jquery.com/demos

2008-09-10 Thread PRICE
Hi there, Do you know any Jquery plugin or source code like: http://ui.jquery.com/demos . I like this menu style but I am new at JQuery. I want to build new one but I stuck some places so need to see some source codes. If you know any, please inform me. Thank you...

[jQuery] Conceptual problem. Is posible with Jquery??

2008-09-10 Thread etnas
Hi everybody! I have a conceptual problem and I'm not sure if it's possible to resolve with jQuery (or Javascript). In resume, I have an application with a few floats divs and I would like to select more than one with dragging a box with the mouse, like a common file-explorer. Everyone knows a p

[jQuery] blockUI + negative text-indent FF2 Mac

2008-09-10 Thread defderf
Just wanted to share something that I discovered today while troubleshooting a weird issue on FF2/Mac. I created a modal pop-up window using blockUI which has product details, including 2 buttons. Got it all styled up and looking good and then when testing on FF2 Mac, I discovered the content of t

[jQuery] $.getJSON does not call call back function

2008-09-10 Thread standerby
Hi, I am trying to call a cross domain web service using the following code. The return data is in XML format. It appears that the call back function isn't get called. I can not add ?callback=? to the then of the url. Any thought? Thanks. $.getJSON("http://www.webservicex.net/WeatherForecast.as

[jQuery] Jquery Cycle after callback problem?

2008-09-10 Thread Andrej
Hi, I am using the after callback to animate a div to the height of the next image after you click on the thumbnail. This works great (in Firefox only) when you actually click on the thumbnail, but when you first come to the gallery, from the toc page, (click on the first gallery): http://dev2.ac

[jQuery] Re: autocomplete questions

2008-09-10 Thread [EMAIL PROTECTED]
Hmm, I'll have to look at the autocomplete code further. onChange isn't a jQuery function, but it is the internal function used by the autocomplete add-on to initiate the "usual" search process. At first glance since autocomplete was just extending jQuery I thought you could call it directly, bu

[jQuery] Working on website trying to make a list.

2008-09-10 Thread Aaron
I am working on a website and I am trying to create a table. I plan to use php to generate the table with data from the mysql database to fill up the table however I want to set a max on that amount and if it goes over I want to generate other pages or create on the fly links to load to take the d

[jQuery] How to load remoate jquery code with document.write() that works with IE6/7?

2008-09-10 Thread henry
I have a problem with IE (6 & 7) when I have something like this: http://domain.com/ generateCode.php"> and the server returns HTML and JS in place using document.write(), such as: document.write('
TESTING