[jQuery] Re: ui.tabs + ajax question

2008-04-18 Thread Alexandre Plennevaux
hey hey, good to know. Is this actually documented somewhere or do you want me to complete the wiki ? On Fri, Apr 18, 2008 at 8:13 PM, Klaus Hartl <[EMAIL PROTECTED]> wrote: > > > On Apr 18, 3:18 pm, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > > ah ah, i found the answer on claus 's blog

[jQuery] tablesorter and pager question - getting data from mysql

2008-04-18 Thread ktpmm5
I'm missing something basic I think in using the tablesorter function. I have an index.php that does the following: - sets up my divs, including one called "content" where I want all my data to go - included jquery, superfish.js (menus), data.js, tablesorter, and tablesorter pager M

[jQuery] Re: Ajax post and link

2008-04-18 Thread Jack Killpatrick
Try something like: $(".show_subpages").click(function() { var $this = $(this); $.post("/pages/get_subpages", { id: $this.attr("rel") }, function(data) { $this.parent().append(data); }); return false; }); That will preserve the "this" during the ajax call

[jQuery] Re: conflict

2008-04-18 Thread fib
can anyone help on this the question is why can I get one to work and not the other an visa versa I want them both to work.. I am sure it is a simple issue can someone please help d On Apr 17, 2:03 am, fib <[EMAIL PROTECTED]> wrote: > Hi > > I am getting into jquery and quite excited >

[jQuery] Re: performance $(o).html(val)

2008-04-18 Thread sannoble
Hi Hans, I noticed the same problem today and realized that the reason is the empty()-method which is called by html. May be you want to read this post: http://groups.google.com/group/jquery-en/browse_thread/thread/fea89caebdbb8453 in which I explained my opinion of the problem and solution in

[jQuery] Re: validate() and multiple forms that arrive via ajax

2008-04-18 Thread Jan Limpens
solution for dynamically loaded, multiple ajax forms with jquery validate: function setupForm(form, target){ $("input.ajax-invisible").hide(); $(form).validate({ // ataches the validator currentForm : $(form), submitHandler: function() { submit(form

[jQuery] Ajax post and link

2008-04-18 Thread poncjusz
I'm sure that solution is simple but I can't find it... :/ I'v got such problem: $(".show_subpages").click(function() { $.post("/pages/get_subpages", { id: $(this).attr("rel") }, function(data) { $(".show_subpages").parent().append(data); });

[jQuery] jscrollpane

2008-04-18 Thread narolis
Hi, I'm using your jscrollpane plugin and it's working very well. I only have little bugs, maybe you know how to fix it. When we use the "tab" key of the keyboard. The focus of the page change between each element. If the content of the scrollpane have elements that can have the focus and the fo

[jQuery] Problems with selectors [SOLVED]

2008-04-18 Thread Jat
On 18 abr, 19:48, JAT <[EMAIL PROTECTED]> wrote: > [...] > I've problems to select a certain element on code HTML generated by > php. > [...] > ,[ HTML Code ] > | > | > | [...] > | {Article options linked with or tags} > | [...] > | > |

[jQuery] Re: validate() and multiple forms that arrive via ajax

2008-04-18 Thread Jan Limpens
In the meantime I refactored this to: function setupForm(form, target){ $("input.ajax-invisible").hide(); $(form).validate({ currentForm : $(form) }); if ($(target) != null) { $(form).ajaxForm({ beforeSubmit:

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread sutra
Thank you all. I am going to play with the jQuey combobox. sutra

[jQuery] round corner slideout

2008-04-18 Thread wesbird
Hi, I just start use jQuery for about 3 month. It really save me a lot of work. Now I have this problem, I have a div with 4 round corner. I made by picture. there are all kind elements inside, dropdown list, button, list, textarea, checkbox, ... Now we decide to change it to this, initially

[jQuery] Re: large string performance problem with html or append function

2008-04-18 Thread wesbird
I thought I have a alert in gmail so I don't have to back here to check if I have reply. obvious I'm wrong. I just found I have reply till now. Thank you, Shawn and Brian, it helps. I apologize about post a big message. I will not do this again. Wes On Mar 27, 7:10 pm, Shawn <[EMAIL PROTECTED

[jQuery] Problems with selectors

2008-04-18 Thread Jat
Hi friends, I've just discovering jQuery and it's a great library. My Javascript's knowledge is not so good than I wish, I'm a newby in this world. I've problems to select a certain element on code HTML generated by php. Following tutorials, api's and rest of very good docs I can't resolve this

[jQuery] How to speed up performance of html() and load()

2008-04-18 Thread sannoble
Hi, I just want to share what I found out today. I was trying to update records of a table with the html-response of an ajax request. First I tried $('#list').load() to just replace the content of $('#list') with the ajax-response. The performance was remarkable poor. I thought it's due to the a

[jQuery] Dynamic table column resizing when adding/removing nowrap attribute

2008-04-18 Thread mistercam
Hello, I am having an issue when adding/removing the white-space:nowrap style from a span element contained within a table cell. Basically I have a complex table, with one column of cells (among others) that contain text. I've created a link that when clicked will toggle the wrapping on the text

[jQuery] Problems with selectors

2008-04-18 Thread JAT
Hi friends, I've just discovering jQuery and it's a great library. My Javascript's knowledge is not so good than I wish, I'm a newby in this world. I've problems to select a certain element on code HTML generated by php. Following tutorials, api's and rest of very good docs I can't resolve this

[jQuery] Re: What do you use?

2008-04-18 Thread cmvonner
CFML (ColdFusion/BlueDragon) with JSON.cfc for converting server-side data into JSON to pass to jQuery. Carl On Apr 16, 4:31 am, Chalkers <[EMAIL PROTECTED]> wrote: > Hi jQueryers, > > I am curious what people use as on the server side with jQuery? > > PHP, ASP, Groovy/Java/Spring, RoR, somethin

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread millitheKidd
sutra, I think they did that in Flash because if you right-click on the dropdown, or several places on the page for that matter, it gives you that context menu that says "Settings..." and below that "About Adobe Flash Player 9...". Also, www.telerik.com has some cool comboboxes that can do a LOT o

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread Andy Matthews
Ah... Sure enough it is, but I don't see any reason why this couldn't be accomplished with jQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of spinnach Sent: Friday, April 18, 2008 2:13 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re

[jQuery] Re: IE XML Parsing problem - newb

2008-04-18 Thread nmadg
It didn't return anything. On Apr 18, 12:27 am, Dmitry Bykadorov <[EMAIL PROTECTED]> wrote: > I have some problem in IE (http://groups.google.com/group/jquery-en/ > browse_thread/thread/dad0aabfe9361fb6?hl=en) > > Can you add error handler in your request? Something like this: > > error: function

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread spinnach
maybe i'm looking at a different page than you, but isn't this page in flash :) ? dennis. Andy Matthews wrote: It looks like all they're doing is to display a DIV when the "select a phone" dropdown is clicked. That div contains a multi-select box, with associated images. There's nothing bui

[jQuery] Re: ui.tabs + ajax question

2008-04-18 Thread Klaus Hartl
On Apr 18, 3:18 pm, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > ah ah, i found the answer on claus 's blog archive: > > the plugin is actually THAT smart that it generates the markup, which is > *really* smart move in terms of nonobtrusiveness. > oh man, code is definitely an art form >

[jQuery] Re: SOT: Using iframe to load in a Flash movie with dynamic height

2008-04-18 Thread Andy Matthews
Interestingly enough, the iframe page crashes Safari everytime it loads. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, April 18, 2008 11:32 AM To: [jQuery] Subject: [jQuery] SOT: Using iframe to load in a Flash movie with dynamic hei

[jQuery] Re: SOT: Using iframe to load in a Flash movie with dynamic height

2008-04-18 Thread Andy Matthews
Neglected to mention that it appears to only display this behaviour in IE. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, April 18, 2008 11:32 AM To: [jQuery] Subject: [jQuery] SOT: Using iframe to load in a Flash movie with dynamic h

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread Andy Matthews
It looks like all they're doing is to display a DIV when the "select a phone" dropdown is clicked. That div contains a multi-select box, with associated images. There's nothing built in to jQuery to this completely, but jQuery could make doing this quite simple. -Original Message- From:

[jQuery] SOT: Using iframe to load in a Flash movie with dynamic height

2008-04-18 Thread Andy Matthews
I've been dealing with this irritating issue on and off now for about a month. I'm finally going to ask for help. I have a page here: http://lexusofdanversma.redlinecontent.com/Pages/Page.cfm?pageID=118873 It contains a Flash movie whose height is set dynamically based on it's content. The Flas

[jQuery] Can jQuery do this?

2008-04-18 Thread sutra
In this site, at the left column, the Model Number, when you click on Select a Phone, the dropdown stay and you can hover through each phone model with viewable thumbnails. http://www.nokiausa.com/A4409001 thanks! sutra

[jQuery] Re: jCarousel infinite loop problem w/ multiple carousels on display: none

2008-04-18 Thread Jan Sorgalla
Hi, On 17 Apr., 21:00, jack <[EMAIL PROTECTED]> wrote: > Could anyone tell me the purpose of binding the window resize to > reload the carousel? Why would this need to happen by default, it > seems unnecessary...? thats because you can control the behaviour of the width from outside with css. O

[jQuery] validate() and multiple forms that arrive via ajax

2008-04-18 Thread Jan Limpens
In a wizard I have a container page with a few divs, every div can host a certain form, that post it's result to another div. Everything via ajax. On the bottom of these forms, I call something like this: jQuery(function($){ setupAddressForm(); }); which looks like this function setupAddr

[jQuery] Convert string into jQuery array

2008-04-18 Thread Cronlajoon
Hi! I have a PHP script which returns a string in a jQuery-format array. Unfortunately doesn't jQuery recognize the string as an Array. How can I convert the string so that jQuery understands that the string is actually an array? This is what the PHP-script returns at the moment: "{ 'item1

[jQuery] Re: ANNOUNCE: Free AIR v1.0 for JavaScript Developers Pocketguide from Adobe

2008-04-18 Thread Andy Matthews
Building HTML/JS AIR apps with jQuery couldn't be easier. Plus the fact that you only have to deal with one browser (WebKIT) makes it a no-brainer. I'm planning on doing a writeup of my experiences building on my recent HTML AIR app. andy -Original Message- From: jquery-en@googlegroups

[jQuery] Re: Can jQuery do this?

2008-04-18 Thread [EMAIL PROTECTED]
Well, yes - it's not too hard to fix the size of a drop-down & add hover actions to your list elements. I don't know if there's a plugin that does specifically what you're looking for, but this one seems quite versatile: http://jquery.sanchezsalvador.com/jquery/page/jquerycombobox.aspx On Apr 1

[jQuery] ANNOUNCE: Free AIR v1.0 for JavaScript Developers Pocketguide from Adobe

2008-04-18 Thread Rey Bango
For all jQuerians interested in producing AIR applications, Ajaxian.com has posted about the new "AIR for JavaScript Developers Pocketguide" which has been updated for Adobe AIR v1.0. The PDF download is FREE! Get it while it's hot! http://ajaxian.com/archives/adobe-air-for-javascript-develo

[jQuery] Re: IE XML Parsing problem - newb

2008-04-18 Thread Dmitry Bykadorov
I have some problem in IE (http://groups.google.com/group/jquery-en/ browse_thread/thread/dad0aabfe9361fb6?hl=en) Can you add error handler in your request? Something like this: error: function(XMLHttpRequest, textStatus, errorThrown){ alert(textStatus); } On Apr 17, 11:56 pm, nmadg <[EMAIL PRO

[jQuery] Downloading docs

2008-04-18 Thread gehel
Hello ! I often working on the train, or in places where I dont have internet connection. So I would like to be able to have the documentation for jQuery on my computer. I could not find an easy way to download it. I tried to download the "jquery-nightly.release.zip" which is said to contain the

[jQuery] select box replacement

2008-04-18 Thread Donald J Organ IV
Has anyone found a select box replacement plugin?? I need the ability to have HTML inside of this "select box"

[jQuery] jQuery.data and metadata plugin

2008-04-18 Thread howa
Hi, Is it true that metadata plugin should be replaced by the jQuery.data? But I found no way to query the data value stored in css class just like metadata. Thanks.

[jQuery] Re: flicking screen on fade in FF Mac

2008-04-18 Thread Richard W
I thank you 120 times dave. This fix appears to solve the problem. On Apr 17, 10:59 pm, David McFarland <[EMAIL PROTECTED]> wrote: > On Apr 17, 2008, at 1:08 PM, Richard W wrote: > > > > > Hi There > > I was wondering if anyone else has noticed or experience the weird > > effect that fade has on

[jQuery] window.home() or location.href='about:home' and Safari 3.1

2008-04-18 Thread Bill
I'm trying to put together a cross-browser function for programmatically taking the user to their home page. So far I have found this: function gohome(){ if (typeof window.home == 'function'){ window.home(); } else if (document.all) { window.location.href = "ab

[jQuery] Re: Superfish with top-level background images - 2nd level hover not completely working

2008-04-18 Thread waldo-web
thanks Joel. that did the trick in Firefox & IE7 - still contending with IE6 but probably that looks to be a general nav issue - superfish seems to be fine.

[jQuery] tablesorter 2.0.3: sorter: false issue

2008-04-18 Thread tlphipps
I upgraded to the latest tablesorter release yesterday and noticed a regression in how the {sorter: false} is handled (at least when applied via metadata). When you click on s that have that applied, the "sortStart" event is triggered (which was not the case previously) and then the "sortEnd" eve

[jQuery] Re: Do I need Livequery?

2008-04-18 Thread [EMAIL PROTECTED]
@ripple: '.showlayer' = selector '#div1' = the thing I want to fade in when you click the selector. There are lots of divs and one class, '.showlayer' for all of the fade triggers. My question was: How do I get jQuery to know which div to fade in, by looking at the href for the selector that was

[jQuery] Re: Converting PHP tabbed page to jQuery

2008-04-18 Thread Andrew Wagner
Hi, I certainly do like jQuery a lot. Doing it unobtrusively in this case could be tricky though. To re-load only part of the page, you really want AJAX, which inherently requires javascript, for the most part. There is an exception, though: you culd be to put the module within in iFrame. This wa

[jQuery] Re: ui.tabs + ajax question

2008-04-18 Thread Alexandre Plennevaux
ah ah, i found the answer on claus 's blog archive: the plugin is actually THAT smart that it generates the markup, which is *really* smart move in terms of nonobtrusiveness. oh man, code is definitely an art form congratz Claus! PS: for others in the need of help with this issue, here i

jquery-en@googlegroups.com

2008-04-18 Thread Dmitry Bykadorov
Here is my code: $.search = function() { $.ajax({ url: "/search/engine", dataType: "html", type: "POST", timeout: 1, cache: false, data: { a: $("#a").val(), b: $("#b").val(), c: $("#c").val(),

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-18 Thread Rick Faircloth
That is weird. I wonder if somehow some of the CSS or jQuery is not being applied when arriving via URL? Any ideas, Chris or anyone? Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jones Sent: Thursday, April 17, 2008 9:03 PM To: jquery-en@google

[jQuery] ui.tabs + ajax question

2008-04-18 Thread Alexandre Plennevaux
Hi friends, While trying to use the ui.tabs plugin, i noticed with delight that since the links controlling the tabs are real urls, the plugin switches to ajax mode. The thing is, it doesn't quite work yet, and i suspect it's the html markup that i get wrong, because the tabs are rendered correct

[jQuery] {Plugin] jQuery.Modularize

2008-04-18 Thread Ariel Flesler
Hi Added this small plugin (673 bytes) that lets you namespace jQuery methods. You can use claim only one name ofjQuery.fn, and have multiple sub- functions under that name. This is one possible approach to keep the rule of only claiming one name from the jQuery namespace. You declare this: $.f

[jQuery] Converting PHP tabbed page to jQuery

2008-04-18 Thread keen2learn
I've built a test module with PHP using three tabs - each tab loads a separate page containing the tabs styled to indicate which one is in use. Here's the test module: http://www.bloogle.com.au/mapping-test.php When I put this module into the site's Home Page, it will have to load all the other

[jQuery] Re: WYSIWYG Editor

2008-04-18 Thread Kinch Zhang
On 4/17/08, Richard D. Worth <[EMAIL PROTECTED]> wrote: > > Take a look at jWysiwyg: > > http://code.google.com/p/jwysiwyg/ > > - Richard It's great ! Thank you for the link because I'm looking for a jQuery WYSIWYG editor for a long time On Wed, Apr 16, 2008 at 7:59 PM, Donald J Organ IV <[EMAI

[jQuery] Re: Anyone have trouble viewing this site on Vista?

2008-04-18 Thread Chris Jones
It falls apart when you arrive at the URL in Opera 9. Hitting refresh doesn't make a difference. If you click into another page the design is fixed.Hitting refresh after the page is fixed, displays the correct layout as well. So the problem is when you land on your site. Download Opera 9 fr

[jQuery] Re: Select multiple elements with "almost" same id

2008-04-18 Thread Morgan Allen
el[id^='quantity'] should do it for you. the ^= is starts with. On Thu, Apr 17, 2008 at 3:30 PM, Zlochko <[EMAIL PROTECTED]> wrote: > > Hallo everyone. My name is Gjoko Pargo. I am a new member of this > group, in fact - this is my first message here. I work mainly as a web > applications develop

[jQuery] Problem positioning an absolute element

2008-04-18 Thread AsymF
I recently implemented the following CSS layout on a site in place of a previous table layout: http://www.pmob.co.uk/temp/3colfixedtest_sourcenone.htm After doing so I cannot get DIVs to position correctly in some instances when using jQuery to do so. One in particular is too far down and over to

[jQuery] Re: Select multiple elements with "almost" same id

2008-04-18 Thread Anton
Hi Zlocho, Couldn't you do something like $("input[name^='quantity']") here? They seem to share the same name. cheers, /Anton On 17 Apr, 18:30, Zlochko <[EMAIL PROTECTED]> wrote: > Hallo everyone. My name is Gjoko Pargo. I am a new member of this > group, in fact - this is my first message her

[jQuery] Binding submit events via Taconite

2008-04-18 Thread lvp1138
Hi guys, Due to the problem with IE unable to "rebind" onclick events, I am now binding click events via Taconite's EVAL command. All I want to do is, when the user clicks on the "submit" button, a "loading" animation to appear. Before going any further, please be aware that the way our app is

[jQuery] [validate] $.valid() issue with IE6

2008-04-18 Thread Up-Works
$('input#step2').livequery('click',function() { if($('form#order').valid()) { $('div#stepOne').hide(); $('div.step').html('StepTwo'); $('div#stepTwo').show(); } return false; }); The line - if($('form#order').valid()) { Cause IE 6 to throw and error stating 'Object doesn't support

[jQuery] Shadowbox.js related question

2008-04-18 Thread Giovanni Battista Lenoci
Hi, I know that shadowbox.js isn't a jquery plugin, but I think that most of you had take a look at this fantastic plugin. I'm using in it in a site for displaying images, and I'm wondering if it's possible to display a caption in the bottom like other plugins do. Thank you for your answers :-)

[jQuery] Re: jCarousel - highlight current external control

2008-04-18 Thread Jan Sorgalla
Hi, could you please show an example page. Jan On 16 Apr., 08:19, "Ryan M." <[EMAIL PROTECTED]> wrote: > I'm attempting to use thejCarouselplugin, and have been able to set > up what I want, for the most part. In the carousel I've built, I'm > only showing one image at a time, and am using exte