[jQuery] Re: JSS - New Plug-in

2007-10-07 Thread weepy
Very cool How would you recommend using it ? Ie. would you have a jss.css containing specific CSS included after the normal CSS ? Or is your intention to ignore users without javascript ? Jonah On Oct 7, 3:16 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: A question. Probably I do not get

[jQuery] Re: Setting radio button values

2007-10-07 Thread Wizzud
#id should really be unique. It's never a good idea to rely on $(#id) retrieving multiple elements with that id. If your radios have a name of 'Gender' (which seems likely) then you could try... $('input[name=Gender]').each(function(){ this.checked = (this.value == jsonData.feedback.Gender); });

[jQuery] Re: multiple selects, hiddens and text inputs with same name

2007-10-07 Thread Wizzud
NB . to add/change an id: $('select[name=foo]').each(function(i){ this.id = 'bar'+i; }); On Oct 6, 2:47 am, rgrwkmn [EMAIL PROTECTED] wrote: In addition to Wizzud's solution: Since it seems that you want to be able to access each select with the name foo individually

[jQuery] Re: Problems with jQuery Firefox

2007-10-07 Thread Wizzud
For example ... ? On Oct 6, 10:39 pm, tramblie [EMAIL PROTECTED] wrote: The jQuery's Ajax Requests (and some other) API won't work with Firefox (2.0.0.7) has someone noticed the same problem? Is it an incompatibility, a bug or what?

[jQuery] Re: Problems with jQuery Firefox

2007-10-07 Thread James Dempster
Nope never had a problem with firefox and jQuery. Do you have an example? On Oct 6, 10:39 pm, tramblie [EMAIL PROTECTED] wrote: The jQuery's Ajax Requests (and some other) API won't work with Firefox (2.0.0.7) has someone noticed the same problem? Is it an incompatibility, a bug or what?

[jQuery] Re: JSS - New Plug-in

2007-10-07 Thread Josh Bush
It would be good to see this detect and use Brandon Aaron's Live Query( http://brandonaaron.net/docs/livequery/ ) for new elements added after $.jss.apply() is called. Josh On Oct 6, 6:39 pm, Andy Kent [EMAIL PROTECTED] wrote: Hi Guys, This is a plug-in that was thrown together in a few

[jQuery] jqGrid new version

2007-10-07 Thread Tony
I have released a new version of jqGrid. Demo page here: http://trirand.com/jqgrid/jqgrid.html Home page: http://www.trirand.com/blog/ Enjoy.

[jQuery] [newbie] toggle between two images

2007-10-07 Thread Jérémie
HI, I'm trying to do something with jQuery, and each time I think I have it right, it all falls apart. Yep, it's quite obvious me and javascript aren't the best buddies... maybe someone can give me a hand? In a web page, I would like to display an image, let's call it imgFull (that would be

[jQuery] Add Href Values to create a querystring

2007-10-07 Thread dOS
Hi to all, hope you can help.. I need to add and remove href values as you click in a list, ex: div id=brand ul lia href=1Yahoo/a/li lia href=2Yahoo/a/li /ul /div And need to pass values to form a url.. if i click on 1 then the url to get will be: some.php?brand=1 If i click on # 2, then

[jQuery] Re: JSS - New Plug-in

2007-10-07 Thread Byron
Yay! child selectors in ie! thank you :-)

[jQuery] Help with jquery ajax

2007-10-07 Thread dgt
Hey guys I'm new to jquery here! I'm using this code to load an html page into a div: code function getPage(thePage){ $(#pageLoader).ajaxStart(function(){ $(#pageLoader).append('div id = loader/div'); }); $.ajax({ url: thePage, cache: false, html: true, global: true, success:

[jQuery] Re: Problems with jQuery Firefox

2007-10-07 Thread tramblie
The Demo on the http://docs.jquery.com/Ajax/load#urldatacallback page works with Firefox while I view it through the JQuery page, but if I run a personalized code from my local PC or Web Server, it works only with IE. Why?

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-07 Thread To
On Oct 6, 7:36 pm, muccy [EMAIL PROTECTED] wrote: $(#photo).fadeIn(slow); $(#photo).show; $(#photo).fadeIn(slow, function() { $(this).show(); } it should work well I'm afraid it's not... :-S This is my code: $(#photo).hide(); $(window).load(function() {

[jQuery] Re: IE6 - Operation Aborted - Any Ideas?

2007-10-07 Thread G[N]Urpreet Singh
Guys, What I figured was that my jq code was trying to play with the parts of the DOM which were not yet loaded (the accordion at the right bottom). To fix it, I moved that bit of code further down in my document ready function and havent the error ever again. I guess you guys are correct, the

[jQuery] problems extracting xml from ResponseXml object

2007-10-07 Thread ShyamTech
Hi, I am trying to extract the data from xml returned from Ajax call. I have tried more than one way to access the xml1 node from the xml, but couldn't get it. Can you please suggest? code XML response ?xml version=1.0 encoding=ISO-8859-1 ? - root xml1 am desperate; find me /xml1

[jQuery] problem parsing xml response (responseXML object)

2007-10-07 Thread ShyamTech
Hi, I am trying to extract the data from xml returned from Ajax call. I have tried more than one way to access the xml1 node from the xml, but couldn't get it. Can you please suggest? code XML response ?xml version=1.0 encoding=ISO-8859-1 ? - root xml1 am desperate; find me /xml1

[jQuery] Re: More Superfish Questions

2007-10-07 Thread Ryura
Thanks a ton, Joel! On Oct 6, 10:45 pm, Joel Birch [EMAIL PROTECTED] wrote: On 10/7/07, Ryura [EMAIL PROTECTED] wrote: http://simplythebest.net/scripts/DHTML_scripts/dhtml_script_122.html What I'm asking is if I can do a menu like sample 2 using superfish. Hi Ryura, Sorry for the slow

[jQuery] Re: jqGrid new version

2007-10-07 Thread Rey Bango
Tony, The link to the searchDB plugin is invalid. (http://www.trirand.com/jqgrid/searchdb.zip) Rey Tony wrote: I have released a new version of jqGrid. Demo page here: http://trirand.com/jqgrid/jqgrid.html Home page: http://www.trirand.com/blog/ Enjoy.

[jQuery] Re: jqGrid new version

2007-10-07 Thread Tony
Rey, Thank you for this note. It is my bad. It is corrected now. Tony P.S. The searchdb plugin will be updated soon too. On 7 Окт, 17:59, Rey Bango [EMAIL PROTECTED] wrote: Tony, The link to the searchDB plugin is invalid. (http://www.trirand.com/jqgrid/searchdb.zip) Rey Tony wrote:

[jQuery] Re: Problems with jQuery Firefox

2007-10-07 Thread Michael Geary
It's going to be pretty hard for anyone to guess what is wrong. Post a link to a test page and someone will probably spot the problem in no time. -Mike From: tramblie The Demo on the http://docs.jquery.com/Ajax/load#urldatacallback page works with Firefox while I view it through the

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-07 Thread Leandro Vieira Pinho
Guys, I have translate the jQuery lightBox plugin page into english. And, I have did a new layout too. See: http://leandrovieira.com/projects/jquery/lightbox/ On Oct 5, 12:05 am, Guy Fraser [EMAIL PROTECTED] wrote: Leandro Vieira Pinho wrote: The jQuery lightBox plugin 0.2 version are

[jQuery] Re: JSS - New Plug-in

2007-10-07 Thread Andy Kent
It would be good to see this detect and use Brandon Aaron's Live Query(http://brandonaaron.net/docs/livequery/) for new elements added after $.jss.apply() is called. Yep, this is on the plan, but it actually involves a slightly different approach. Rather than using .css() to apply the styles

[jQuery] Re: JSS - New Plug-in

2007-10-07 Thread John Beppu
Impressive work! Would this by chance make position:fixed for IE6 just work? That alone would be a god-send for me right now.

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-07 Thread Jean
Very cool! Parabéns ve!! On 10/7/07, Leandro Vieira Pinho [EMAIL PROTECTED] wrote: Guys, I have translate the jQuery lightBox plugin page into english. And, I have did a new layout too. See: http://leandrovieira.com/projects/jquery/lightbox/ On Oct 5, 12:05 am, Guy Fraser [EMAIL

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-07 Thread Alexandre Plennevaux
all this is nice and looking good, but for me it does not behave correctly: - if you resize the window, the overlay div does not resize itself; - on long pages (with the scrollbars visible), while the lightbox is on, you can still scroll and have the image scroll along with it: this is not modal

[jQuery] Re: Keeping the calendar plug in open?

2007-10-07 Thread Kelvin Luck
Hi Iain, I'm not sure which calendar plugin you are talking about but your email prompted me to add the functionality you describe to my datePicker plugin (something I've been meaning to do for a very long time and luckily had a spare bit of time today for). You can find the examples of

[jQuery] Re: Treeview borks on large lists?

2007-10-07 Thread Jörn Zaefferer
sgrover schrieb: I just got a report from a contact of mine that their site map which is using the Treeview plugin (http://www.airdrie.ca/site_map/index.cfm) is causing IE7 to periodically crash. FF handles the tree just fine. Their comment is that it's the larger lists that are causing

[jQuery] Re: Treeview borks on large lists?

2007-10-07 Thread Jörn Zaefferer
sgrover schrieb: [...] Thanks for any tips. Before we try to find bottlenecks that don't exist anymore: An upgrade to jQuery 1.2.1 and Treeview 1.3 maybe worth a try. -- Jörn

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-07 Thread Leandro Vieira Pinho
Hi Alexandre, thanks for your suggestions. In the next realse I´ll analyse it. Regards. On 10/7/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: all this is nice and looking good, but for me it does not behave correctly: - if you resize the window, the overlay div does not resize itself;

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-07 Thread Rey Bango
Leandro, I've been looking for this type of LightBox for awhile; one that functioned like LightBox2 (http://www.huddletogether.com/projects/lightbox2/). This is very cool. Rey... Leandro Vieira Pinho wrote: Hi Alexandre, thanks for your suggestions. In the next realse I´ll analyse it.

[jQuery] Re: Add Href Values to create a querystring

2007-10-07 Thread Wizzud
Why? What are doing with the url? When are doing something with the url? dOS-2 wrote: Hi to all, hope you can help.. I need to add and remove href values as you click in a list, ex: div id=brand ul li 1 Yahoo /li li 2 Yahoo /li /ul /div And need to pass values to form a url..

[jQuery] Re: jqGrid new version

2007-10-07 Thread Olivier Percebois-Garve
Very slick work tony May I suggest to add a loading icon (maybe with status of the queue) ? I have an erratic Internet connection and nothing tells me if the next pane will eventually be loaded. -Olivier Tony wrote: Rey, Thank you for this note. It is my bad. It is corrected now. Tony

[jQuery] selecting elements in a nested table

2007-10-07 Thread [EMAIL PROTECTED]
Could someone help me out with the following problem. I've been thinking about this for quite a while, but I just cannot think of a solution to the problem at all. Quite simply, I would like to leave the UL containing the LI with class=active open when the page is loaded, all other elements

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-07 Thread Guy Fraser
Leandro Vieira Pinho wrote: Guys, I have translate the jQuery lightBox plugin page into english. And, I have did a new layout too. See: http://leandrovieira.com/projects/jquery/lightbox/ Excellent work! One feature request though - mainly for usability. It's not immediately apparent

[jQuery] Re: Keeping the calendar plug in open?

2007-10-07 Thread iain duncan
On Sun, 2007-07-10 at 19:32 +0100, Kelvin Luck wrote: Hi Iain, I'm not sure which calendar plugin you are talking about but your email prompted me to add the functionality you describe to my datePicker plugin (something I've been meaning to do for a very long time and luckily had a

[jQuery] Normal way of positioning an element?

2007-10-07 Thread iain duncan
I feel like I must be missing something obvious in the docs, but while I have found methods for finding out where an element is ( offset, position ) I don't see an obvious jquery method for placing an absolutely positioned element. What is the recommended way? And might I humbly suggest to the

[jQuery] Re: How to check for specified fonts

2007-10-07 Thread EdMartin
Well, you're right that it works for the usual fonts. I hadn't noticed that because my interest in having such a test derives from the desire to detect if users have the necessary fonts installed to display MathML in documents served as !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1 plus MathML

[jQuery] Re: calling all jQuery Safari wizards!

2007-10-07 Thread bytte
Hi To, a bit higher is my solution to the problem. You lose a bit of the fancy effect, but it's ok until the bug gets solved i guess. On 7 okt, 14:40, To [EMAIL PROTECTED] wrote: On Oct 6, 7:36 pm, muccy [EMAIL PROTECTED] wrote: $(#photo).fadeIn(slow); $(#photo).show;

[jQuery] how to upload the files by the multiple file upload plugin

2007-10-07 Thread Harun SARAÇ
hi guys, the plugin i called in subject is what i need, thanks to all contributor. But otherwise i couldn't solve the serverside programming of this plugin. Its queues the files but i cant even know how can i catch this queue's information. Are they in hidden field or what? If so whats the

[jQuery] Re: jqGrid new version

2007-10-07 Thread Ryura
Tony, You've made a nice looking plugin, however the documentation is hard to understand. I'm not sure on how to include a jqGrid onto my site. Would it be possible for you to make a more detailed documentation for those of us who are fairly unfamiliar with PHP?

[jQuery] Re: [newbie] toggle between two images

2007-10-07 Thread Christopher Jordan
HI Jeremie (sorry about the lack of accent characters, I'm feeling lazy right now) Would the imgFull class have the full image as a background image? and then maybe an imgThumb with a background image of the thumbnail? If so, that's as easy as doing something like this:

[jQuery] HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
I'm building a little app that will read in a page of static HTML. I'd like to take the string that's returned from the get() call and parse through it, dumping only the paragraphs into a jQuery object with a length of 40. What's the best approach to this?

[jQuery] Re: selecting elements in a nested table

2007-10-07 Thread Karl Swedberg
Hi there, This will work with jQuery 1.2+: $('ul.mylist ul:not(:has(.active))').hide(); --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 7, 2007, at 4:46 PM, [EMAIL PROTECTED] wrote: Could someone help me out with the following problem. I've been

[jQuery] Re: Normal way of positioning an element?

2007-10-07 Thread Karl Swedberg
On Oct 7, 2007, at 4:57 PM, iain duncan wrote: I feel like I must be missing something obvious in the docs, but while I have found methods for finding out where an element is ( offset, position ) I don't see an obvious jquery method for placing an absolutely positioned element. What is

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
Just a clarification...I really just want to be able to pass in a string of text, from any source, and create a valid jQuery object from it. In this case, this is the string that I'm going to be using: http://www.commadelimited.com/code/fillertext/hillbilly.html I want to isolate the p tags

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Christopher Jordan
dude... what the hell is that! LOL! :o) On 10/7/07, Andy Matthews [EMAIL PROTECTED] wrote: Just a clarification...I really just want to be able to pass in a string of text, from any source, and create a valid jQuery object from it. In this case, this is the string that I'm going to be using:

[jQuery] Re: Is this possible with jQuery?

2007-10-07 Thread Davey Waterson
If i understand your requirement. the trick is to make the style a class style and simply add it directly to the div. i.e change div#Explanation to .Explain (a style class called 'Explain') to target the div and add the class use : $('#Explanation').addClass('Explain'); hope this helps

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
:) It's filler text. You've probably seen the fake Latin text lorem Ipsum It's just meant to be text put into a text box or whatever to take up visual space. On Oct 7, 9:39 pm, Christopher Jordan [EMAIL PROTECTED] wrote: dude... what the hell is that! LOL! :o) On 10/7/07, Andy Matthews

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Christopher Jordan
Oh... okay. I was thinkin' I'd have to see whatever site was going to use that content! :o) On 10/7/07, Andy Matthews [EMAIL PROTECTED] wrote: :) It's filler text. You've probably seen the fake Latin text lorem Ipsum It's just meant to be text put into a text box or whatever to take up

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
Here it is: http://www.commadelimited.com/code/fillertext/ On Oct 7, 9:49 pm, Christopher Jordan [EMAIL PROTECTED] wrote: Oh... okay. I was thinkin' I'd have to see whatever site was going to use that content! :o) On 10/7/07, Andy Matthews [EMAIL PROTECTED] wrote: :) It's filler

[jQuery] clone() is hidden

2007-10-07 Thread james_027
hi, I am wondering why after I did clone().appendTo(), the new element doesn't show up. With firebug I saw that it has display:none in it's style attribute ... I try to do clone().appendTo().show() but it doesn't work Could someone correct me on this? Thanks james

[jQuery] Code review: 1 problem each in IE and FF

2007-10-07 Thread Andy Matthews
I was just working on a quick little project to utilize some gibberish text I've had laying around: http://www.commadelimited.com/code/fillertext/ It's a simple tool to generate filler text. You select a number, a style, then hit submit. It loads in some external HTML, then displays your

[jQuery] jQPanels

2007-10-07 Thread [EMAIL PROTECTED]
I have just posted my very first plug-in. Is an easy and unubitrusive script to create and manage sliding panels with for the moment quite few options. I'd really should like to have some feedback about the coding. Demo page and download link: a

[jQuery] Re: ANNOUCE: jQuery lightBox plugin

2007-10-07 Thread Leandro Vieira Pinho
Nice suggestion. A keyboard navigation is coming too. Regards. On 10/7/07, Guy Fraser [EMAIL PROTECTED] wrote: Leandro Vieira Pinho wrote: Guys, I have translate the jQuery lightBox plugin page into english. And, I have did a new layout too. See:

[jQuery] Re: jQPanels

2007-10-07 Thread Rey Bango
Awesome Andrea! :D Rey [EMAIL PROTECTED] wrote: I have just posted my very first plug-in. Is an easy and unubitrusive script to create and manage sliding panels with for the moment quite few options. I'd really should like to have some feedback about the coding. Demo page and download link: a

[jQuery] Packing JS code

2007-10-07 Thread Pops
What I can download to pack and minified my javascript code? Thanks