[jQuery] Re: Tabs and Hide/Show Divs

2008-01-22 Thread Klaus Hartl
On Jan 22, 2:37 am, MikeP [EMAIL PROTECTED] wrote: I see the click method with the tab. It takes 3 arguments: clicked tab, tab container to show, tab container to hide I do want to hide and show a tab's contents. This it's doing automatically. However, I also have ANOTHER panel/div that I

[jQuery] Re: eval vs. Function

2008-01-22 Thread weepy
you might be better off posting that on the jQuery Dev group weepy On Jan 22, 8:34 am, Danny [EMAIL PROTECTED] wrote: A question for the jQuery team: I look at the jQuery source code as my source for Javascript best practices, and I see a few examples of things like: fn =

[jQuery] eval vs. Function

2008-01-22 Thread Danny
A question for the jQuery team: I look at the jQuery source code as my source for Javascript best practices, and I see a few examples of things like: fn = eval(false||function(elem){return + fn + }) What is the advantage of that over using Function, as: fn = Function('elem', 'return '+fn)

[jQuery] OT: how to benchmark user hardware?

2008-01-22 Thread Alexandre Plennevaux
Hi friends, i have a question slightly off topic: my jquery-based experimental application is very visual, and renders quite well on recent pcs, but not so good on old ones: i'm moving too many elements for these old bastards. I would like to explore the possibility to adapt the content to

[jQuery] Re: filter selects and get value...how?

2008-01-22 Thread Hamish Campbell
Ok, so you've got an _array_ of jQuery objects, you need to enumerate over the objects if you want the value of each one: var obj = $inputs.filter([name='qty[]']).filter(select option:selected); for ( var i = 0; i obj.length; i++) { var val = obj[i].val(); // now do something

[jQuery] learning jQuery book and ajax autocompletion

2008-01-22 Thread matt
I purchased Learning jQuery and I'm going through some of the ajax examples. On page 219 they have an auto completion example. I can get it to work just fine, but what about if you're pulling records from a database? For instance, the example shows: $terms = array('football','baseball');

[jQuery] Re: jTagEditor Custom Callback

2008-01-22 Thread Jay Salvat
Hi Everyone ! I'm the author of jTagEditor. Thanks Pauly for this great improvement. jTagEditor was an early draft of what i had in mind. I'm finishing a brand new version of jTagEditor now called MarkItUp with many level of callback and possibility to call the editor's features from the

[jQuery] [validate] Checking if a form is valid without triggering UI feedback

2008-01-22 Thread eric
Hi there, I'm wondering if there is a way to check if a form is valid without triggering UI feedback for invalid fields in the form? I tried both the $('#myform').valid() and validator.form() methods, but they both trigger the UI. cheers // eric

[jQuery] Ajax scoping problem

2008-01-22 Thread [EMAIL PROTECTED]
I'm probably being daft, but I'm trying to populate an array by processing some xml but my (global) array gets destroyed when the ajax function has done it's job. I know it's because the ajax function. I know it's a scoping problem but I don't know how to fix it and most fixes I found online

[jQuery] Re: OT: how to benchmark user hardware?

2008-01-22 Thread Fabien Meghazi
1/ detect user setup or perform some tests, to determine the available CPU, graphic Card, RAM, browser,OS. It may not even be necessary to know these datas, if we run a test that just tells us if the end user specs are speedy or not. 2/ send a different javscript file according to the

[jQuery] Re: OT: how to benchmark user hardware?

2008-01-22 Thread Alexandre Plennevaux
-- Original Message -- To: Jquery-en (jquery-en@googlegroups.com) From: Fabien Meghazi ([EMAIL PROTECTED]) Hi Fabien, in fact i need to benchmark the setting as a whole so my mail was a bit misleading: i think i need to test some manipulation, time it, and if the timing goes

[jQuery] Re: Ajax scoping problem

2008-01-22 Thread David Decraene
why not: var myarray = new Array(); function handleXML(xml) { $(xml).find(something somethingelse).each(function(){ myarray.push( $(this).text()); }); Can't see why that wouldn't work. David http://OntologyOnline.org On Jan 22, 11:53 am, [EMAIL PROTECTED] [EMAIL PROTECTED]

[jQuery] Not working in IE

2008-01-22 Thread StirolXXX
Hi! I have a small but pain-in-the-ass problem. Here is my code: var ExternalLinks_InNewWindow = '1'; function initSpoilers(context) { var context = context || 'body'; $('div.spoiler-head', $(context)).click(function(){ var code =

[jQuery] Re: Ajax scoping problem

2008-01-22 Thread David Decraene
also If you do something like this (don't know if you do): var myarray = new Array(); function readXml(){ ..ajax.. } function handleXML(xml) { myarray[i] == ...} var x = myarray.length; then x will always be 0 because myarray.length get's executed before the ajax call returns success

[jQuery] Make money easy start now

2008-01-22 Thread mona samy
make money now: http://forex.smarts-way.info/

[jQuery] Re: OT: how to benchmark user hardware?

2008-01-22 Thread Mika Tuupola
On Jan 22, 2008, at 2:18 PM, Fabien Meghazi wrote: 1/ detect user setup or perform some tests, to determine the available CPU, graphic Card, RAM, browser,OS. It may not even be necessary to know these datas, if we run a test that just tells us if the end user specs are speedy or not.

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
Anyone, please? On Jan 21, 3:41 pm, Feed [EMAIL PROTECTED] wrote: Really, really sorry I sent the wrong link! This is the right one: http://www.mz-ir.com/mzdesign/portfolio/portfolio.asp

[jQuery] Re: Ajax scoping problem

2008-01-22 Thread yves coor
I don't think I am but maybe I'm judging this wrongly. I call two functions: readXml(...); displayPlayer(...); The second one uses the global var myarray but it's always undefined. It must definitely be related to the timing of the asynchronous call though. If I pass the values returned by the

[jQuery] Re: FixedTable Plugin - testing help requested

2008-01-22 Thread Suni
Nice work! Seems to work prefectly in FF. Opera and Explorer give a javascript error. Usually (in my own experience) this is caused by the same error in 95% of the cases: an extra comma after the last property of an object. This also seems to be the case here. Remove the tailing comma from

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread tlob
define doesn't work as smooth. It's pretty smooth on my FF cheers tom On Jan 22, 3:07 pm, Feed [EMAIL PROTECTED] wrote: Anyone, please? On Jan 21, 3:41 pm, Feed [EMAIL PROTECTED] wrote: Really, really sorry I sent the wrong link! This is the right one:

[jQuery] Jeditable + Json + Multiple Select

2008-01-22 Thread daweb
Hi everybody, excuse my bad english... I'm using jEditable plugin, it works fine, but I have a little question... I have to use it with a dynamic set of select input type. This is my PHP code with the Json string: { message: dl dt1/dt dd div class=\optionsList\h4First/h4 span

[jQuery] Calendar inside a Tab3

2008-01-22 Thread Diego
Hi I'm working with tabs3. In one tab im loading a jsp with a form inside. i'm trying to use datepicker inside the tab but i cant do it. I can make the calendar works in any input text the index but no in the tab that i have. Here is my code, im using it in the index, then i copy and paste in

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread h0tzen
i cant see any difference in smoothness ...

[jQuery] Re: Add a callback to any method

2008-01-22 Thread h0tzen
this is pretty smart. why not just use prototyping? thats what jscript is all about and personally i think, its *the* best idea to add that feature.

[jQuery] Anyone seen toggleClass is not defined

2008-01-22 Thread hotsauce
I keep receiving an error with this bit of code on click $(document).ready(function() { $('div.example').click( function() { $(this).toggleClass(activated); }); }); It works, but I keep receiving an error stating that toggleClass is not defined How would I define this?

[jQuery] Re: Calendar inside a Tab3

2008-01-22 Thread Klaus Hartl
On Jan 22, 4:29 pm, Diego [EMAIL PROTECTED] wrote: Hi I'm working with tabs3. In one tab im loading a jsp with a form inside. i'm trying to use datepicker inside the tab but i cant do it. I can make the calendar works in any input text the index but no in the tab that i have. Here is my

[jQuery] Re: Jeditable + Json + Multiple Select

2008-01-22 Thread Mika Tuupola
On Jan 22, 2008, at 4:29 PM, daweb wrote: and this is the Js code in which I'm trying to use the plugin: $(.clickOnThisSelect).editable (?=site_url('admin/entries/update_options/'.$this-idEntryCod)?, { indicator : img src='?=site_url('assets/images/icons/loader.gif')? ', tooltip :

[jQuery] Re: Jeditable + Json + Multiple Select

2008-01-22 Thread Mika Tuupola
On Jan 22, 2008, at 6:04 PM, Mika Tuupola wrote: I do not fully understand what you are trying to do, but the data parameter can be a function. This function can dynamically set the values to what you want them to be. For example something like: Now when I look at the code. Are you

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
Tom, have you tried it in IE? It's much smoother... when I say smooth I mean the smoothness of the animation, the frames per second, you know... the animation is a bit clumsy in Firefox... What version of Firefox are you using? On Jan 22, 12:24 pm, tlob [EMAIL PROTECTED] wrote: define doesn't

[jQuery] general question

2008-01-22 Thread tlob
Hi! I have a general question. I do a fadeIn/fadeOut with a big logo on the Homepage. If the user surfs back to that site (not later that day, while he is surfing that site), the animation should not shown again. How would you do that? cookies/sessions? I'm looking for the easyest way to

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
Thanks for the feedback Tom... I haven't tried it in IE7 yet, I'll see what this ugly scrollbar is about. The Site RL you stated is actually Site RI (it's in portuguese - Site Relações com Investidores), it's fine :) About the flash thing, yeah, that would be a better choice performancewise...

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread tlob
Hey Well Site RI is not fine in my Browser... Just an Idea: try out PNGs or Gifs. That maybe help in the smoothiness. Yea, forgett Flash. It would not be indexable for searchengines. cheers tl On Jan 22, 6:16 pm, Feed [EMAIL PROTECTED] wrote: Thanks for the feedback Tom... I haven't

[jQuery] Re: Calendar inside a Tab3

2008-01-22 Thread Klaus Hartl
On Jan 22, 5:13 pm, Diego [EMAIL PROTECTED] wrote: Yes div id=container             ul                 lia href=/jsp/GoInsert.dospanGoInsert/span/a/ li [...] the tabs load an action and forward to jsp page In this case you need to initialize the calendar in the load callback, e.g.

[jQuery] Re: Is it possible jQuery do similar actions width $(this) such as selectors like $(DIV A)

2008-01-22 Thread Jörn Zaefferer
mtest schrieb: Firstly, sorry for my english, but it's very important to me know the answer :). For example there is such a code: dl dtMenu/dt ddSubMenu1/dd ddSubMenu2/dd ddSubMenu3/dd /dl i call function: $(dl).bind(mouseover, function(){ I get the object DL, witch now may

[jQuery] Re: Add a callback to any method

2008-01-22 Thread chrismarx
well, yeah it would be, if i were smart enough to figure out how to actually use in the context of jquery chained functions. the above example is what i want it to do. the closest i got was this: ( $('div[class=rating]').livequery(function(){ var $this = $(this); var opts =

[jQuery] How do I enhance Google Map

2008-01-22 Thread naes
Hi I've followed the following tutorial on implementing a Google Map using Mapstraction, jQuery Microformats http://24ways.org/2007/unobtrusively-mapping-microformats-with-jquery I was wondering (as a newbie) how to add a couple of additional neat features; 1) Hovering over a marker

[jQuery] A Beginner Question

2008-01-22 Thread Volkan Görgülü
Hi, Lets say I have a Definition List like shown below. dl dta href=#Item Group A/a/dt ddItem 1/dd ddItem 2/dd dta href=#Item Group B/a/dt ddItem 1/dd ddItem 2/dd ddItem 3/dd /dl What I want to achieve is whenever I click an a tag in dt I want to show dd tags inside the clicked dt I am using

[jQuery] Re: ajax load, url variable question.

2008-01-22 Thread hj
On Jan 20, 2:18 pm, Mike Geise [EMAIL PROTECTED] wrote: I am using the ajax load method to populate a select list. $(#games).load($siteRoot/file/ajaxgames.aspx, {criteria.Platform.PlatformID: $(this).val(), view: normal}); what I am wondering is how I can get jquery to work with the var

[jQuery] Re: A Beginner Question

2008-01-22 Thread tlob
try to use IDs/classes in the DDs. just an Idea cheers tl On Jan 22, 6:37 pm, Volkan Görgülü [EMAIL PROTECTED] wrote: Hi, Lets say I have a Definition List like shown below. dl dta href=#Item Group A/a/dt ddItem 1/dd ddItem 2/dd dta href=#Item Group B/a/dt ddItem 1/dd ddItem 2/dd

[jQuery] Re: FixedTable Plugin - testing help requested

2008-01-22 Thread Shawn
Thanks for the feedback. I'm on the road right now, so don't have easy access to my VM to test the changes in IE. But, I've made the changes (aren't they *always* obvious only after you see them?). I'll be back at my main computer in an hour or so - I'll try IE then. One thing I'm noting -

[jQuery] Jguery and form plugin

2008-01-22 Thread mike
I am trying to use the jquery form plugin with a djano form. The form works if i use ajax submit, but has to refresh, I am trying to catch the results without refreshing the page. When i put values in the form and submit the page does not show the result but I am using firebug in Firefox to veiw

[jQuery] Looking for a Thumbnail Scroller with a Difference

2008-01-22 Thread studiobl
I'm looking for a plugin that functions like scrollShow http://www.freewebs.com/flesler/jQuery.ScrollShow/ with the following difference: when one of the thumbnails is clicked, it changes an area of the page. So you could have a number of divs that are hidden, scroll through the sample images,

[jQuery] Re: A Beginner Question

2008-01-22 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Volkan Görgülü [mailto:[EMAIL PROTECTED] What I want to achieve is whenever I click an a tag in dt I want to show dd tags inside the clicked dt Look at your code - you are saying when I click a DT do toggle... but you aren't defining which dt. So of

[jQuery] Re: jqGrid... a few questions...

2008-01-22 Thread Rey Bango
Tony, You should chat w/ John about placing jqGrid related docs in the SVN repo for plugins so that its always available. Rey Tony wrote: Hi Bryce, Thanks for the feedback about the site. I think, that I will change the ISP in the near future. Now about the grid. Grid is independent from

[jQuery] chili and jquery 1.2.2

2008-01-22 Thread GianCarlo Mingati
Hi all. I tried to upgrade to jQ 1.2.2 but unfortunately the Chili syntax highlighter have some problem with the new version of jQuery. Anyone else got any issue too? Or is there something i am missing? Ciao GC

[jQuery] Re: jqGrid... a few questions...

2008-01-22 Thread Tony
Hi Bryce, Thanks for the feedback about the site. I think, that I will change the ISP in the near future. Now about the grid. Grid is independent from the backend. Since I known only PHP and not .NET, ASP ... , so I can not help you with writing the script when you construct the JSON data, but

[jQuery] Re: Still working out drop-down div menu...

2008-01-22 Thread Rick Faircloth
Hey, Karl... Any chance you might have some time to hook up on Windows Messenger or something else and put a little time in on that drop-down div menu we've been working on? I couldn't find your address to email you directly, but you can contact me at RickatWhiteStoneMediadotcom. Thanks, Rick

[jQuery] Re: jqGrid... a few questions...

2008-01-22 Thread Tony
I will do that Rey. Thanks On Jan 22, 9:04 pm, Rey Bango [EMAIL PROTECTED] wrote: Tony, You should chat w/ John about placing jqGrid related docs in the SVN repo for plugins so that its always available. Rey Tony wrote: Hi Bryce, Thanks for the feedback about the site. I think,

[jQuery] Hey, Karl! You around today?

2008-01-22 Thread Rick Faircloth
Hey, Karl... Any chance you might have some time to hook up on Windows Messenger or something else and put a little time in on that drop-down div menu we've been working on? I couldn't find your address to email you directly, but you can contact me at RickatWhiteStoneMediadotcom. Thanks, Rick

[jQuery] Re: A Beginner Question

2008-01-22 Thread Karl Swedberg
Hi Volkan, You could use John Resig's .nextUntil() method. Drop this in your js file somewhere... / next until / $.fn.nextUntil = function(expr) { var match = []; // We need to figure out which elements to push onto the array this.each(function(){ //

[jQuery] Re: Still working out drop-down div menu...

2008-01-22 Thread Karl Swedberg
just sent you a private email. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 22, 2008, at 2:25 PM, Rick Faircloth wrote: Hey, Karl... Any chance you might have some time to hook up on Windows Messenger or something else and put a little time

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
Hi Tom, Thanks again for your input. What do you mean by Site RI being cut in half? Can you maybe provide a screenshot? My english betrays me sometimes :) On Jan 22, 3:32 pm, tlob [EMAIL PROTECTED] wrote: Hey Well Site RI is not fine in my Browser... Just an Idea: try out PNGs or Gifs.

[jQuery] Q: on handling GET JSON

2008-01-22 Thread Kynn Jones
I'm confused by something I found in the definition of $.ajax in the jQuery source, and would greatly appreciate it if someone could shed some light on the matter. The part of the code in question is this (I've made a couple of minor formatting changes for clarity): // If we're requesting a

[jQuery] Re: Help- looking for motion/animation help (specifically, hovering)

2008-01-22 Thread withinreach
No mouse behavior (walk away from the 'hover' as mouseover - think 'hover' like spaceship over a house). My orig post: Or more specifically, a swami/guru/magic person hovering in place with slight up/down/left/right motion. Floating might be a better concept. I want my logo (robot) to hover in

[jQuery] Re: A Beginner Question

2008-01-22 Thread Jörn Zaefferer
Karl Swedberg schrieb: Hi Volkan, You could use John Resig's .nextUntil() method. Not 100% sure, but afaik nextUntil is included in jQuery 1.2 as nextAll: http://docs.jquery.com/Traversing/nextAll Maybe someone can confirm that. Jörn

[jQuery] Re: Change div

2008-01-22 Thread cfdvlpr
Did you ever get this figured out?

[jQuery] UI Dialog

2008-01-22 Thread Matt Quackenbush
Hello, I'm trying to get the UI Dialog box implemented in a couple of the items that I am currently working on, but am apparently doing something incorrectly. Here's the relevant code that I'm testing... link href=css/core.css type=text/css rel=stylesheet media=all / link

[jQuery] Re: [jqValidate] - Client Side Validation with jQuery

2008-01-22 Thread Brice Burgess
On Jan 22, 2:30 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: The source *may* even be readable! Now, Brice you really fought against your nature on this one :) Nice to see another plugin from you! Will you continue working on jqmodal? 2 requests: - an iframe example - a autoresize

[jQuery] Re: UI Dialog

2008-01-22 Thread Matt Quackenbush
Okay, I officially feel like an ID10T. body *class=flora* Amazing how important the *^@^*#$% tiny details are. Thanks, Matt

[jQuery] Re: A Beginner Question

2008-01-22 Thread Hamish Campbell
Here's how you do it (tested and working): !-- HTML -- dl dta href=No-Javascript-URL_AItem Group A/a/dt ddItem 1/dd ddItem 2/dd dta href=No-Javascript-URL_BItem Group B/a/dt ddItem 1/dd ddItem 2/dd ddItem 3/dd /dl script $(document).ready(function() {

[jQuery] Re: Calendar inside a Tab3

2008-01-22 Thread Diego
argh, its works.. but i have a new problem my old function, with tabhref when i click in other tab. $(function() { var $tabs = $('#container ul').tabs(3, { click: function() { $tabs.tabsHref(3, '/Normativa/jsp/VerBuscador.do'); } }); }); The new Function, with cache false,

[jQuery] Re: How to have Autocomplete dropdown act like select box and trigger onchange event for input

2008-01-22 Thread Mark Thompson
I have changed a little of my code and have gotten the onchange code to run, but Internet Explorer does not hide the dropdown list after selecting a value unless selected a second time. What can I do to change this behavior? var idList = %=addIDStringBuffer.toString()%; var idArray =

[jQuery] Barcode reader with jQuery

2008-01-22 Thread camilo_u
Hi Guys, I am currently working in some method to capture input data using a bar code scanner, it's quite simple since the scanner presses the enter at the end of the reading, but I'm planning to capture that enter to execute some other jQuery function, or moving the focus to a new input, but

[jQuery] Re: FixedTable Plugin - testing help requested

2008-01-22 Thread Shawn
Oh so close. IE 6 is placing the main table below the fixed columns div. This is a float problem. I'm digging into the CSS issues. Otherwise the table seems to work fine in IE 6. Shawn Shawn wrote: Thanks for the feedback. I'm on the road right now, so don't have easy access

[jQuery] Re: Jguery and form plugin

2008-01-22 Thread mike
any help would be appreciated On Jan 22, 12:49 pm, mike [EMAIL PROTECTED] wrote: I am trying to use the jquery form plugin with a djano form. The form works if i use ajax submit, but has to refresh, I am trying to catch the results without refreshing the page. When i put values in the form

[jQuery] Re: A Beginner Question

2008-01-22 Thread Volkan Görgülü
Thank you very much James, this makes sense, I am going to investigate it. Your help is very apreciated. Best Regards

[jQuery] Re: Calendar inside a Tab3

2008-01-22 Thread Diego
thanks, i initialize in load and works On 22 ene, 14:32, Klaus Hartl [EMAIL PROTECTED] wrote: On Jan 22, 5:13 pm, Diego [EMAIL PROTECTED] wrote: Yes div id=container ul lia href=/jsp/GoInsert.dospanGoInsert/span/a/ li [...] the tabs load an action

[jQuery] Livequery Toggle for newly added row

2008-01-22 Thread Mang
This is my first attempt at using jquery, so perhaps this is way off... I'm utilizing the following code to add rows to my table: $(input:[EMAIL PROTECTED]'Add_Row']).click(function () { $('tbody').appendTo(#tblFormulary).html(trtdimg src='images/ on.gif'/td/tr); This works very well, but now

[jQuery] Re: A Beginner Question

2008-01-22 Thread Cloudream
dl dta href=#Item Group A/a/dt ddItem 1/dd ddItem 2/dd /dl dl dta href=#Item Group B/a/dt ddItem 1/dd ddItem 2/dd ddItem 3/dd /dl script type=text/javascript $(document).ready(function(){ $(dt a).click(function(){$ (this).parent().parent().find(dd).toggle(); return false;}); }); /script

[jQuery] Re: Add a callback to any method

2008-01-22 Thread chrismarx
sorry, correction, first i had to wrap the jquery function in another function. and although this worked, i think because of the looping or something, the second function was executed before all the jquery stuff finished ( function(){ $('div[class=rating]').livequery(function(){

[jQuery] Re: Autocomplete does not trigger onchange javascript code in input element.

2008-01-22 Thread Mark Thompson
I have changed a little of my code and have gotten the onchange code to run, but Internet Explorer does not hide the dropdown list after selecting a value unless selected a second time. What can I do to change this behavior? var idList = %=addIDStringBuffer.toString()%; var idArray =

[jQuery] Re: A Beginner Question

2008-01-22 Thread Volkan Görgülü
Hi Karl, Thanks for your great help. It worked. Best Regards

[jQuery] Re: Jeditable + Json + Multiple Select

2008-01-22 Thread daweb
Thank for reply Mika. Try to explain my issue. I have x number of select input type, generated from a db query. With an ajax call I print the select fields into the page, without page reload obviously. Now i wanna use your plugin to edit this select fields but I can't set the data options with

[jQuery] Re: Jguery and form plugin

2008-01-22 Thread mike
The django variable for my result in django template language is {{ result }} everywhere I put this on my page, firebug is showing the result in console, but it is not appearing on my page, what am I doing wrong? On Jan 22, 12:49 pm, mike [EMAIL PROTECTED] wrote: I am trying to use the jquery

[jQuery] jQuery news ticker feature question

2008-01-22 Thread daji
Hello, I'm new to jQuery, so I apologize if this is a silly question. But I'm trying to use one of the existing news ticker plugins, however, none of them have a feature I have been looking for. In addition to the refreshing of the news box every so many seconds, I'd like for users to be able

[jQuery] ui_tabs and form plugin: conflict in IE 6.

2008-01-22 Thread Romiz
Hello All!!! I has meet one strange thing in IE6 when use together 2 plugins, such as a href=http://stilbuero.de/jquery/tabs_3/;ui_tabs/a and a href=http://www.malsup.com/jquery/form/;form plugin/a - forms not sent when it loaded in ui tab panel... $('#account_form').ajaxForm(); - not sent by

[jQuery] Adding CSS-property therefore traveling the DOM - Problem.

2008-01-22 Thread Jayzon
Hi! To get this right, I'll post the html-part first: div class=memberarea div class=memberpic a href=# img src=the_image.jpg alt=Mr. X title=Mr. X / /a /div

[jQuery] Re: Q: on handling GET JSON

2008-01-22 Thread h0tzen
i think the key-check is this: !s.url.indexOf(http) file://foo/bar cant be requested via XHR, so script-tag is used... On 22 Jan., 23:20, Kynn Jones [EMAIL PROTECTED] wrote: I understand what the test at the top is testing for, but I don't understand the policy implemented by the code that

[jQuery] Re: A Beginner Question

2008-01-22 Thread Hamish Campbell
nextAll behaves differently from nextUntil On Jan 23, 12:34 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: Karl Swedberg schrieb: Hi Volkan, You could use John Resig's .nextUntil() method. Not 100% sure, but afaik nextUntil is included in jQuery 1.2 as

[jQuery] Re: FixedTable Plugin - testing help requested

2008-01-22 Thread Shawn
Got it. The plugin now works in IE 6. I needed a width assigned to the div for the fixed column. Now I get to test it on some production data (a complex table). Shawn Suni wrote: Nice work! Seems to work prefectly in FF. Opera and Explorer give a javascript error. Usually (in my own

[jQuery] gFeed: Pre-FeedControl()?

2008-01-22 Thread Micky Hulse
Hi, I would like to take a gander at the gFeed plugin before it was converted to use the FeedControl() goodness... Anyone know where I could download older versions? Thanks! Cheers, Micky

[jQuery] Re: Jguery and form plugin

2008-01-22 Thread Mike Alsup
Where are you expecting the result to go? You've got a callback function there but it doesn't do anything: // bind 'myForm' and provide a simple callback function $('#myForm').ajaxForm(function() { return false; }); The result is passed into that callback, for example:

[jQuery] Re: clone() problem in IE7

2008-01-22 Thread David Serduke
Check out this ticket and the proposed patch to see if it fixes your problem. http://dev.jquery.com/ticket/2184 David On Jan 22, 4:36 pm, Jason Davies [EMAIL PROTECTED] wrote: Does anyone know of a workaround? Jason On Jan 21, 3:37 pm, Leu [EMAIL PROTECTED] wrote: Yes there seems to