[jQuery] Re: script works in firefox bu not in IE or Safari why???

2008-01-17 Thread George
There may be some confusion over the use of commas in your jQuery selectors. You can use commas *in* the selector string when you need more than one selector but you cannot put commes between jQuery calls (that would not be valid javascript). It should work if you remove the two occurrences of $

[jQuery] Re: middleclick event

2008-01-17 Thread Nikola Ivanov
On Jan 17, 3:39 am, RobG [EMAIL PROTECTED] wrote: Control + click or command + click also opens links in a new tab for some settings in some browsers. I can also set Firefox to always open new windows in a tab, trying to stop that is futile. Absolutely correct. There are many ways to open

[jQuery] Re: jmaps - callback function problem

2008-01-17 Thread Duncan
Thanks Hamish I am also using jMaps2 and saw that adding addMarker:false should return the point object, then I would have point.y and point.x this doesn't appear to be happening though. I also spotted the references to what you pointed out in the jmaps.js file, but because I am using jmap2 I

[jQuery] Load JavaScript in order with IE

2008-01-17 Thread Justin Meyer
Does anyone know how to make IE load and run empty.js before it alerts second? Here's how I started doing it. But this doesn't work. document.write(script type=\text/javascript\ src=\/javascripts/ empty.js\\/script); document.write(script type=\text/javascript\alert(\second\)\/ script) This

[jQuery] Swaping background image error only in IE7

2008-01-17 Thread mixen
hi i have anerror when i try to swap background images, it works fine in firefox, safari, opera but in IE7, i get this : Line : 907 Char : 30 Error : Invalid Argument Code : 0 URL : http://localhost/mixen/www that happens as soon as i move my mouse over the image to swap it. my jquey code is

[jQuery] scrollpane and lightbox conflict

2008-01-17 Thread taffy006
i can't seem to get any kind of a lightbox to work with a scrollpane can anyone out there help me??

[jQuery] Re: jmaps - callback function problem

2008-01-17 Thread Hamish Campbell
Hmm, well this definately works: script language=javascript type=text/javascript customGeoCode = function(address) { if (typeof $.jmap.GClientGeocoder == 'undefined') { var geocoder = new GClientGeocoder; } else { var geocoder =

[jQuery] clone help

2008-01-17 Thread Lionel Martelly
I read somewhere that events must be bind when cloning so I remove the parent. Please how do I bind the context menu? $('#$id').contextMenu('chooser', { bindings: { 'vert': function(t) { $('#$id').remove().clone(true).appendTo('#verticals'); }, 'horiz':

[jQuery] Re: IE 7 show/hide/slide problems with Jquery

2008-01-17 Thread Lewis
Hi just to let anyone know for the future, if you are struggling with some bugs in showing/hiding in IE's - i found the solution to my problem was to action some of the hiding in a call back function within the first hide(). IE is a small highly stupid child, and can get confused very easily -

[jQuery] How to select the last item in a collection?

2008-01-17 Thread Jesper Rønn-Jensen
I made a script that makes a div clickable by selecting all div class=click and setting the onclick event to go to the href of a link. Everything worked when i selected the first links href attribute. This works and selects the first a element: location.href =

[jQuery] context menu and draggables

2008-01-17 Thread Lionel Martelly
Hello, Can someone please tell me if it is possible to use the context menu with draggables? Right click and send to another div. Or am I wasting my time? Here is what I have. Thank you. $('#$id').contextMenu('mytest', { bindings: { 'vert': function(t) { $('#$id').Draggable(

[jQuery] Re: Problem with tablesorter

2008-01-17 Thread Cesar
I encountered this bug the alternate fix, if you want to use version 2.0 of the metadata plugin, is to open up tablesorter, and find/ replace $.meta/$.metadata and .data()/.metadata(). For the lazy people out there you can grab my version here: (Use at your own risk)

[jQuery] Re: simple newbie js function problem...

2008-01-17 Thread Hamish Campbell
Ah so, you learn something new everyday! On Jan 16, 5:34 pm, fuzziman [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Remember that variables declared within functions only exist for that function. Not really... As others mentioned, the crux of the problem is because setInterval is

[jQuery] A problem about $(function somefun(){});

2008-01-17 Thread [EMAIL PROTECTED]
hey , everyone , I am new comer. I use jquery.js in my website, and I write code like following to initialize some params: $(function someFun(){ //some codes }); but , there is a statistics script in the same page.The statistics script is so slow that someFun cannot run at once. How can I

[jQuery] $(document).ready does not work in IE

2008-01-17 Thread andy9989
Hi All A simple script starting from $j(document).ready( function(){ }) Does not work in IE (FF and other browsers are OK). Placing it before /body makes everything working. It looks as IE tries to execute the script before building DOM tree, though

[jQuery] Re: jqURL?

2008-01-17 Thread Chris J. Lee
Why reinvent the wheel? On Jan 16, 6:31 pm, Jeroen [EMAIL PROTECTED] wrote: On Jan 16, 2008 8:43 PM, Chris J. Lee [EMAIL PROTECTED] wrote: Anyone know if jqURL is up to date with jquery 1.2.2.? http://www.oakcitygraphics.com/jquery/jqURL/jqURLdemo.html?var1=1var... Why not give it a

[jQuery] Re: Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-17 Thread Mike Alsup
On Jan 16, 2008 11:46 PM, Nazgulled [EMAIL PROTECTED] wrote: Now it's happening either pressing the Return key or clicking in the Log In button, this is getting me on my nerves!!! HELP PLEASE! Are you expecting the redirect to cause the entire page to be redirected? Or are you applying

[jQuery] Re: middleclick event

2008-01-17 Thread Nikola Ivanov
In any case the main question is: is there a way to catch the middleclick?

[jQuery] Re: scrollpane and lightbox conflict

2008-01-17 Thread Alexandre Plennevaux
hi taffy, anyone would like to see your code because you give too few info for us to start giving out solutions. °-' alex -- Original Message -- To: jQuery (English) (jquery-en@googlegroups.com) From: taffy006 ([EMAIL PROTECTED]) Subject: [jQuery] scrollpane and lightbox

[jQuery] Re: TexoTela select box manipulation modification

2008-01-17 Thread Sam Collett
This should work: $.fn.moveOptions = function(to, which) { this.copyOptions(to, which); if(which == all) { this.find(option).remove().end(); } else { this.find([EMAIL PROTECTED]).remove().end(); } return this; } On Jan 16, 11:03 pm, codecowboy

[jQuery] Re: simple newbie js function problem...

2008-01-17 Thread tlob
Yes, I learned a lot because of you guys! Thank you. It works like a charm: http://www.lightwavers.net/dadda/ cu tom On Jan 17, 9:37 am, Hamish Campbell [EMAIL PROTECTED] wrote: Ah so, you learn something new everyday! On Jan 16, 5:34 pm, fuzziman [EMAIL PROTECTED] wrote: [EMAIL

[jQuery] Re: Load JavaScript in order with IE

2008-01-17 Thread Cloudream
$.getScript('empty.js',function(){alert('a');}); On Jan 17, 12:20 pm, Justin Meyer [EMAIL PROTECTED] wrote: Does anyone know how to make IE load and run empty.js before it alerts second? Here's how I started doing it.  But this doesn't work. document.write(script type=\text/javascript\

[jQuery] animate

2008-01-17 Thread KidsKilla .grin! wuz here
Hi, everyone! I haven't found in docs, can i stop an animation of 1 css rule without touching everything other? for example: $('div').animate({width:'+=300'}, 'slow'); $('div').animate({opacity:'hide'}, 'slow'); $('button').click(function(){ $('div').stop('width').animate({width:'-=300'},

[jQuery] Re: $(document).ready does not work in IE

2008-01-17 Thread Cloudream
give a demo page link :) On Jan 17, 4:12 pm, andy9989 [EMAIL PROTECTED] wrote: Hi All A simple script starting from         $j(document).ready(         function(){                }) Does not work in IE (FF and other browsers are OK). Placing it before /body makes everything

[jQuery] Re: $(document).ready does not work in IE

2008-01-17 Thread Jesper Rønn-Jensen
I expect the J is on purpose in $j as you write? This example here works for me: $(document).ready( function(){reca_clickable(); } ); where reca_clickable() is a named function. Don't know if that helped you? /Jesper

[jQuery] Re: How to select the last item in a collection?

2008-01-17 Thread besh
Anyway, the answer is: location.href = $(this).find('p a:last')[0].href; -- Bohdan Ganicky On Jan 17, 11:00 am, Jesper Rønn-Jensen [EMAIL PROTECTED] wrote: I made a script that makes a div clickable by selecting all div class=click and setting the onclick event to go to the href of a link.

[no subject]

2008-01-17 Thread blum

[jQuery] Re: jTagEditor Custom Callback

2008-01-17 Thread Pauly
there do seem to be a bundle of vars that would be available to your callback function based on what is available to the 'preview' callback var field = this; var $$ = $(field); var oId = $$.attr(id) ||

[jQuery] Re: jTagEditor Custom Callback

2008-01-17 Thread Pauly
I also had the same issue, it doesn't look like these things are available to the callback, does anyone know better? On Jan 14, 10:32 pm, bennybobw [EMAIL PROTECTED] wrote: I'm trying to extend jTagEditor to add a image dialog with more fields (source, title, height, width, etc.). The only

[jQuery] Happy Birthday jQuery

2008-01-17 Thread tlob
a little late, I know. but I also wish to thank all the developers and the community for releasing and supporting such a great product! Thank you Thank you Thank you! http://www.lightwavers.net/dadda/hbjq.html to much candles... Sorry! cheers tom

[jQuery] Re: slideup/slidedown flicker

2008-01-17 Thread alexanmtz
Hi PJ, Jonh suggest this solution http://groups.google.com/group/jquery-en/browse_thread/thread/bd8c11dc66b6d7ad/fb78b998fdf35f88?lnk=gstq=animate+height+ie#fb78b998fdf35f88 That works perfectly for me, but in my project I can´t change the doctype, Im trying another thing. Did you have solve

[jQuery] Re: How to select the last item in a collection?

2008-01-17 Thread besh
Hi Jesper, you might be interested in this: http://dev.jquery.com/ticket/2164 -- Bohdan Ganicky On Jan 17, 11:00 am, Jesper Rønn-Jensen [EMAIL PROTECTED] wrote: I made a script that makes a div clickable by selecting all div class=click and setting the onclick event to go to the href of a

[jQuery] Re: clone help

2008-01-17 Thread KidsKilla .grin! wuz here
$('#$id').remove().clone(true).appendTo('#verticals'); is wrong. because of remove() (it kills everything because of memory IE leaks). you sould use this chain instead: $('#$id').appendTo('#verticals'); or somethin like that: $('#$id').hide().bla-bla.appendTo('#verticals').show(); 2008/1/17,

[jQuery] Re: How to select the last item in a collection?

2008-01-17 Thread Jesper Rønn-Jensen
Besh and Cloudream Thanks a lot! The answer is kind of obvious when you look at it. Thanks a lot for your quick replies! /Jesper www.justaddwater.dk

[jQuery] Knowledge :

2008-01-17 Thread [EMAIL PROTECTED]
Knowledge : Knowledge is the eye of desire and can become the pilot of the youl --- Wll Durant Please see the website : http://padmagirl.blogspot.com thank you for your cooperation with

[jQuery] Re: How to select the last item in a collection?

2008-01-17 Thread Cloudream
see :last-child selector on docs.jquery.com On Jan 17, 6:00 pm, Jesper Rønn-Jensen [EMAIL PROTECTED] wrote: I made a script that makes a div clickable by selecting all div class=click and setting the onclick event to go to the href of a link. Everything worked when i selected the first links

[jQuery] Horizontal mouse scroll wheel

2008-01-17 Thread Martin Berglund
Hi everybody! (my first post in this group) I was surfing around some typography related sites today, and I came across a site that was designed horizontally. a hrefhttp:// www.itamarlerner.com/This site/a (not my site) made me wonder if there is an easy way to assign the x-axis to the mouse

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

2008-01-17 Thread Karl Swedberg
Hi Rick, After several failed attempts, I think I have this working for you. I had to set a flag for the menu-details div's visibility (I called it bVis). It's initially set to false. In the mouseover argument of $ ('#menu-index').hover(...), it gets set to true in the callback of $

[jQuery] Re: How to select the last item in a collection?

2008-01-17 Thread KidsKilla
$(this).filter(':last') On 17 янв, 13:00, Jesper Rønn-Jensen [EMAIL PROTECTED] wrote: I made a script that makes a div clickable by selecting all div class=click and setting the onclick event to go to the href of a link. Everything worked when i selected the first links href attribute. This

[jQuery] Re: Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-17 Thread Nazgulled
It is a full document... index.php is like the name says, the index, if no _GET is specified it will load the login page (it will check for sessions and automatically log the user and redirect it to the 'start', this is working). If the login page is loaded, when the user logins, index.php is

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-17 Thread quirksmode
Hi, I tried having a go and this is as far as I got: script $(document).ready(function(){ $(.animate).hover(function() { $(this).animate({ opacity: 0, backgroundColor: #FF }, 1000 ); }); }); /script I can get any element with class

[jQuery] Re: IE7 fadeOut table row?

2008-01-17 Thread dianenar
I am also having this issue and have not found a solution yet. On Jan 14, 8:11 am, alivemedia [EMAIL PROTECTED] wrote: I am having trouble getting a table row to fade out an dlook good in IE7. It basically doesn't work, the text turns slightly rough looking for a second and then disappears.

[jQuery] Re: TexoTela select box manipulation modification

2008-01-17 Thread codecowboy
Thank you very much. That worked. It would be great if you had the time to tell me what was wrong with my original code because JS is something that i am not so familiar with. On Jan 17, 7:25 am, Sam Collett [EMAIL PROTECTED] wrote: This should work: $.fn.moveOptions = function(to, which)

[jQuery] Re: clone help

2008-01-17 Thread Lionel Martelly
thank you but about remove()? where do I use it - Original Message - From: KidsKilla .grin! wuz here [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, January 17, 2008 9:14 AM Subject: [jQuery] Re: clone help $('#$id').remove().clone(true).appendTo('#verticals'); is

[jQuery] Re: [NEWS] Richard Worth Writing for DMXZone

2008-01-17 Thread Rey Bango
jQuery UI team member Richard Worth has been brought onboard by online magazone DMXZone.com to do a weekly column on jQuery UI topics. This is great news since the popular site produces great content with a strong focus to RIA. Please note that DMXZone does charge for their articles but the

[jQuery] Jquery, Jsonp and UTF8

2008-01-17 Thread Mathieu
Hi guys. I have an issue with jQuery using Jsonp and i would like to know if anyone may help. I'm using the getJSON function to call an URL on another domain; everything works fine except that the content i display in my callback function is displayed using UTF8 encoding with Firefox and ISO8859

[jQuery] Loading dynamic content into tab (ui.tabs)

2008-01-17 Thread carvingcode
I'm having trouble getting dynamic content to load into a tab. At present, I'm using the the the Ajax tabs example from the ui.tabs documentation. The file I am trying to load works fine when I call it independently, but when I try to load it in a tab, the loading text and spinner is the only

[jQuery] Re: Swaping background image error only in IE7

2008-01-17 Thread Karl Swedberg
Hi Mixen, Looks like the problem is that you've misplaced a semicolon. Note the difference between this ... $(this).css({'background-image':url('ico/ico_shout_o.gif');})} ); and this... $(this).css({'background-image':url('ico/ico_shout_o.gif')});}); I'm a big fan of the .hover()

[jQuery] Re: Happy Birthday jQuery

2008-01-17 Thread Alexandre Plennevaux
-- Original Message -- To: jQuery (English) (jquery-en@googlegroups.com) From: tlob ([EMAIL PROTECTED]) Subject: [jQuery] Happy Birthday jQuery Date: 17/1/2008 14:02:30 a little late, I know. but I also wish to thank all the developers and the community for releasing and

[jQuery] Re: script works in firefox bu not in IE or Safari why???

2008-01-17 Thread hollow
Thanks George, Great respons gives a better understanding of jquery but unfortunately it didn't help on my IE and Safari problem. modified the code to reflect your answer: $(function () { $('input[name][id$=div]').change(function(){

[jQuery] Re: [Release] jQuery Validation plugin 1.2 Release Candidate 1

2008-01-17 Thread Scott González
On Jan 16, 6:30 pm, Jack Killpatrick [EMAIL PROTECTED] wrote: Hi Jörn, Good to hear about this, thanks very much. Some quetions: 1. Is there a what's changed doc somewhere? Yes, every release contains a changelog (changelog.txt in the base directory): * Added AJAX-captcha validation

[jQuery] animation queue ?

2008-01-17 Thread Alexandre Plennevaux
hi friends, i'm storing the steps of a series of animations in an array, that have to occur one after the others, according to their index order in the array. Example: animArray['section', 'item','object1','object2' ]; i would like to run a function that loops through the array, and for

[jQuery] Re: jqURL?

2008-01-17 Thread Josh Nathanson
It should be ok, it contains very little actual jQuery (mostly vanilla javascript) but I haven't looked at it in a while. -- Josh (jqURL author) - Original Message - From: Chris J. Lee [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, January 16,

[jQuery] Re: TexoTela select box manipulation modification

2008-01-17 Thread Sam Collett
I think it may be because when you remove an option the total number of options is decreased, so you never get through all of them. Start at the last option and then go back, so instead of: for(var i = 0; ioL; i++) Maybe (untested): for(var i = oL; i0; i--) On Jan 17, 3:44 pm, codecowboy

[jQuery] Re: Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-17 Thread Mike Alsup
If the credentials are correct, the user is logged in and it should be redirected to the 'start' page. If it's not, the php execution is terminated with die() and outputs some error messages. With the Form Plugin I will handle that error messages and display them to the user, this is working

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-17 Thread Karl Swedberg
You might need the color plugin for this: http://plugins.jquery.com/project/color --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 17, 2008, at 10:13 AM, quirksmode wrote: Hi, I tried having a go and this is as far as I got: script

[jQuery] Re: clone help

2008-01-17 Thread Karl Swedberg
Hi Lionel, It looks like you replied to another email message to this group and simply changed the subject line. Unfortunately, people who use a thread view in their email programs may ignore your message because it will appear in the same thread, or group, of messages that they've

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

2008-01-17 Thread Rick Faircloth
Ok... thanks, Karl. It seems to be working better. I'm going to make a change in the padding of the ul, #id=ul-index because the bottom of the li's contained therein aren't currently reaching as far down as the #menu-index... there's a gap of about 6px at the bottom which allows the details div

[jQuery] Re: addClass and removeClass not working in IE

2008-01-17 Thread Cloudream
if you mean input/checkout(etc) 'disabled' attr ,try .attr('disabled','disabled'); and .attr('disabled','') or you mean really css class. a demo page is needed... On Jan 17, 10:43 pm, rajeshphp [EMAIL PROTECTED] wrote: the addClass and removeClass not working in IE for me , this is my code

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

2008-01-17 Thread Rick Faircloth
Well... my attempts to fix the details div showing with content didn't work. At least I think I changed all the padding and line-heights that I attempted to change back to the way they were. However, now the issue seems to have disappeared! Whatever... as long as it works! The last issue I

[jQuery] Re: IE7 fadeOut table row?

2008-01-17 Thread alivemedia
Nope, not yet - anyone else have this problem and a solution?

[jQuery] Re: $(document).ready does not work in IE

2008-01-17 Thread Jack Killpatrick
I've had problems with .ready() in IE, too, but have found that adding a setTimeout() usually works as a workaround: $(document).ready(function() { setTimeout(function() { // making IE happy (and sometimes Safari) doSomething(); }, 500); }); Sometimes the timeout length (500

[jQuery] Re: Replacing elements while retaining attributes

2008-01-17 Thread Glen Lipka
I hate that about IE. :( Some of these might be helpful. http://plugins.jquery.com/project/selectboxes http://www.malsup.com/jquery/form/ http://plugins.jquery.com/project/jq-autocomplete Glen On Jan 17, 2008 8:21 AM, Eric Lanehart [EMAIL PROTECTED] wrote: Hello all, I'm trying to

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-17 Thread Rick Faircloth
Oh, that's cool! I like! Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Thursday, January 17, 2008 1:02 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

[jQuery] Safari 2 problem with append, html, replaceWith and preventDefault

2008-01-17 Thread eltom
Hi, I'm working on a project where I juse jquery 1.2.1 and I've come across strange behaviour when testing in Safari 2. When adding html code to dom elements with append, html or replaceWith Safari doesn't output the html code but instead outputs: function (m, a, b) { return

[jQuery] Re: context menu: how to target an item based on 2 id?

2008-01-17 Thread Glen Lipka
Using more than one element with the same ID is not going to work. However, you can use multiple classes to achieve your goal. For instance: td class=allart az Both CSS classes will apply and you can use selectors in jQuery to find what you want. Getting an ID will return only one element.

[jQuery] Re: animation queue ?

2008-01-17 Thread KidsKilla .grin! wuz here
try this: $.fn.animateByOrder = function(params, duration, easing, callback){ var i = -1; var arr = this; if($.isFunction(easing)) { callback = easing; easing = null; } (function(){ if(arr[++i])

[jQuery] Re: animation queue ?

2008-01-17 Thread Erik Beeson
Check out here: http://erikandcolleen.com/erik/jquery/fxQueue/ Demo: http://erikandcolleen.com/erik/jquery/fxQueue/random.html Or here: http://brandonaaron.net/jquery/plugins/fxqueue/ Demo: http://brandonaaron.net/jquery/plugins/fxqueue/test/test.html --Erik On 1/17/08, Alexandre Plennevaux

[jQuery] Congrats

2008-01-17 Thread serializer
Just a quick thanks to the jQuery team for the new release, the fix list is huge :) At least one bit of IE7 weirdness has been resolved outright by updating to the new ver. Several other improvements also look really promising, so well done all! /Serializer

[jQuery] Re: Swaping background image error only in IE7

2008-01-17 Thread mixen
Thanks a bunch! Everything works now.

[jQuery] jQuery Firefox vs IE Problem

2008-01-17 Thread ManuelMP
Hi all, I'm having problems with a difference in rendering between IE and Firefox. The thing is that when a td element is with display hidden, when I make it appear with jQuery show, in IE it renders nicely, but in Firefox it appears displaced. I've put an online example page:

[jQuery] Re: Horizontal mouse scroll wheel

2008-01-17 Thread timothytoe
It would be cool if shift-mousewheel or alt-mousewheel did that. The trick is you'd always have to tell the user how to do it. The touchpad on my laptop allows horizontal scrolling if you drag left- and-right along the bottom of the page, so it would be nice if jQuery could pick that up. And my

[jQuery] Re: Loading dynamic content into tab (ui.tabs)

2008-01-17 Thread Klaus Hartl
On Jan 17, 4:44 pm, carvingcode [EMAIL PROTECTED] wrote: I'm having trouble getting dynamic content to load into a tab.  At present, I'm using the the the Ajax tabs example from the ui.tabs documentation.  The file I am trying to load works fine when I call it independently, but when I try

[jQuery] Re: Is it possible to make a simple fading color rollover effect for text links?

2008-01-17 Thread Glen Lipka
Nice plugin. :) I whipped up a demo. http://commadot.com/jquery/animateBackground.php Is this what you mean? Glen On Jan 17, 2008 8:36 AM, Karl Swedberg [EMAIL PROTECTED] wrote: You might need the color plugin for this: http://plugins.jquery.com/project/color --Karl _

[jQuery] Replacing elements while retaining attributes

2008-01-17 Thread Eric Lanehart
Hello all, I'm trying to dynamically configure the options in a select element based upon selections in a series of radio buttons. My first inclination was to apply a class to all of the option's matching the value of the checkbox input, and to then apply the disabled=disabled attribute too all

[jQuery] Re: jTagEditor Custom Callback

2008-01-17 Thread Pauly
and one last message from me, contradicting all the others... I've edited jquery.jtageditor.js and changed this if ($.isFunction(eval(button.callBack))){ eval(button.callBack).call(); to this if ($.isFunction(eval(button.callBack))){ eval(button.callBack).call( field );

[jQuery] Re: IE7 fadeOut table row?

2008-01-17 Thread KidsKilla .grin! wuz here
I think it's because of IE's realisation of tables. he simply can't apply filters for tr. seems like you sould find some workaround instead of using tr. something like: divtabletrth1/thtdtext1/td/tr/table/div divtabletrth2/thtdtext2/td/tr/table/div quite ugly, but might work... 2008/1/17,

[jQuery] Re: jQuery Firefox vs IE Problem

2008-01-17 Thread Jeffrey Kretz
I tried looking at your page, but I got a 404 not found error. Have you tried making the tr show/hide, rather than the td? JK -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ManuelMP Sent: Thursday, January 17, 2008 9:44 AM To:

[jQuery] Re: Loading dynamic content into tab (ui.tabs)

2008-01-17 Thread Chris J. Lee
Did you apply the load to the right selector in the DOM tree? On Jan 17, 10:44 am, carvingcode [EMAIL PROTECTED] wrote: I'm having trouble getting dynamic content to load into a tab. At present, I'm using the the the Ajax tabs example from the ui.tabs documentation. The file I am trying to

[jQuery] Re: Jquery, Jsonp and UTF8

2008-01-17 Thread Bil Corry
Mathieu wrote on 1/17/2008 9:26 AM: From what i understand, the fact that my content is using UTF8 is normal since this is made in Ajax using Json; but i can't spot the reason why Firefox doesn't act like IE. Do you have a simple example coded? Or it is online somewhere? - Bil

[jQuery] Example of show callback for UI.Tabs?

2008-01-17 Thread MorningZ
Anyone have an example of using the show callback of the UI.Tabs? I am having a problem where for a second or two on initial page load the un-jQuery-tabbed ul list is showing, and then when the .tabs() gets run then it shows the tabbed display that i want So i figured i would set the main div

[jQuery] Re: jQuery Firefox vs IE Problem

2008-01-17 Thread ManuelMP
Actually, I didn't, i'll try that now. Sorry about the 404, my mistake. It's online now. Thanks for the help. Manuel Moniz Pereira Jeffrey Kretz wrote: I tried looking at your page, but I got a 404 not found error. Have you tried making the tr show/hide, rather than the td? JK

[jQuery] Re: TexoTela select box manipulation modification

2008-01-17 Thread codecowboy
Hi Sam, Will you add add that move function to your plugin? The reason I ask is so that I don't have to use my own version of the plugin. Thank you, CodeCowboy On Jan 17, 11:47 am, Sam Collett [EMAIL PROTECTED] wrote: I think it may be because when you remove an option the total number of

[jQuery] Re: jQuery Firefox vs IE Problem

2008-01-17 Thread ManuelMP
Ok, I've tried the tr and it seems to work better. Although, there's still some extra space which firefox includes, and I think it wasn't supposed to... I've uploaded another file, with a second version: http://www.filaum.com/teste2.html http://www.filaum.com/teste2.html Thanks! Manuel

[jQuery] Re: IE Draggable Bug using Interface

2008-01-17 Thread Eric Teubert
Well .. mine is somehow different, it actually didn't work before the patch. I just waitet for it hoping it would be solved. I guess we are expected to change to jQuery UI but as far as I have compared both plugins, the Interface-Draggable suits me better. So .. ideas, anyone? On 17 Jan.,

[jQuery] Re: How can I show/hide table row as it is a div?

2008-01-17 Thread Bober
I know it looks weird, but I use it to slide table rows ( where actually each row is a table of its own, wrapped in a DIV ) and detail divs in a calendar. I do get some brief moments of jerkiness in IE, but it may have more to do with interruptions to processor cycles than anything else.

[jQuery] multiple load .ajax on click then ajax form

2008-01-17 Thread pedalpete
Hi all, I've got some code kinda working, but I think the way i have done it is very inefficient. What I'm doing is loading a form via when the user clicks a link. The form is then processed by the and the results updated via the ajax form plug-in and another .ajax call. However, for each

[jQuery] Re: Look mum, TABS layout only with CSS !!

2008-01-17 Thread George
FWIW, I prefer the dl approach where - tab labels are made from dt's and - tab contents are made from dd's George On Jan 15, 5:31 pm, Enrique Meléndez Estrada [EMAIL PROTECTED] wrote: Looking at official TABs plugin, I realized that the HTML structure is not very natural. It uses a list (UL)

[jQuery] Re: Submitting form with return key using Form Plugin (Ajax) doesn't work

2008-01-17 Thread Nazgulled
I think I understand what you mean... I never used Ajax so, I confused some things... My success callback displays an error message if the login is wrong it does nothing if it's login is correct. I just changed it to handle a redirect request and when that message is found I used

[jQuery] tableSorter question: how to disable the last header?

2008-01-17 Thread Leandro Vieira Pinho
Hi Guys, I would like to know, how to disable the last header. I don´t the last column with the option to sort. I have tried it (see below) but withou success. var totalHeaders = ( $('table th').length - 1); $('table').tablesorter({ headers: {

[jQuery] Re: jQuery Firefox vs IE Problem

2008-01-17 Thread Jeffrey Kretz
Yeah, I see what's happening in firefox. I'm not sure if this will match the needs of your program, but I would recommend shifting your HTML into a CSS-based approach with divs or other elements rather than trying to use a table-layout. For example, a flyout menu with tables is a nightmare, but

[jQuery] Re: IE Draggable Bug using Interface

2008-01-17 Thread Richard D. Worth
On Jan 17, 2008 3:31 PM, Eric Teubert [EMAIL PROTECTED] wrote: Well .. mine is somehow different, it actually didn't work before the patch. I just waitet for it hoping it would be solved. I guess we are expected to change to jQuery UI but as far as I have compared both plugins, the

[jQuery] OT: Networking Vista Home/Home Premium and Leopard

2008-01-17 Thread Andy Matthews
Who would have thought that this would be such a difficult task. My wife's computer must be able to read and write files on my MacMini. She can see the Mini in the network list. She can even browse as far as my user directory. But she cannot access any of the directories inside (Music, Pictures,

[jQuery] Re: How can I show/hide table row as it is a div?

2008-01-17 Thread Rick Faircloth
I understand your reluctance to have to write additional code, but, who really care what the HTML looks like as long as it works correctly for the user? That's the only important thing, unless you're in a Pretty HTML contest. I'm not sure what causes the tr to not slide cleanly. I think it may

[jQuery] Re: jQuery Firefox vs IE Problem

2008-01-17 Thread ManuelMP
Ok, I'll try that. Thanks for your help. Cheers! Manuel Moniz Pereira Jeffrey Kretz wrote: Yeah, I see what's happening in firefox. I'm not sure if this will match the needs of your program, but I would recommend shifting your HTML into a CSS-based approach with divs or other

[jQuery] Adding a table row and a form with jquery?

2008-01-17 Thread dougXN
Anyone have an idea how one might add a row to a table and have the form elements in each column? Something like this: var newRow = document.createElement( 'tr' ); var groupCell = document.createElement( 'td' ); var roleCell= document.createElement(

[jQuery] Re: Loading dynamic content into tab (ui.tabs)

2008-01-17 Thread carvingcode
I've solved the problem. I'll probably have other newbie questions. I appreciate the rapid response from the community.

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

2008-01-17 Thread Mark Thompson
Anybody have a simpler or more detailed bit of help for the onchange problem I have? On Jan 14, 4:33 pm, Mark Thompson [EMAIL PROTECTED] wrote: Thanks, but that is completely over my head at this point. I am not even perfectly clear on what X = $(this) means or why var x = this is needed

[jQuery] Re: Example of show callback for UI.Tabs?

2008-01-17 Thread Klaus Hartl
On Jan 17, 8:56 pm, MorningZ [EMAIL PROTECTED] wrote:  I see the option in the ui.tabs.js file: By the way - in case you didn't know - you don't have to scan the source code for available options. There's also a documentation: http://docs.jquery.com/UI/Tabs In case you like to look at the

[jQuery] jquery autocomplete double click behaviour

2008-01-17 Thread Sebastián V. Würtz
How i can disable the behaviour when i double click over a field with autocomplete? is like the "Single Bird (remote)" example in http://jquery.bassistance.de/autocomplete/ --

  1   2   >