[jQuery] Re: corner plugin on Safari

2008-04-08 Thread Derek Allard
I appears that its only 3.1, and yes, it happens on both windows and mac. I can confirm it does not happen in 3.0. Odd indeed. I'm working on a reduction test here to try to figure out exactly what's going on, and what the most minimal code is possible to re-create it. At the moment I can say i

[jQuery] Re: Taconite with IE

2008-04-08 Thread Mike Alsup
> > The problem is probably with this line: > > > > Nettoyant pour revêtement avec tampon applicateur 90ml > > > > specifically the ê character. Try using a character reference > > (ê) instead. You must use valid XML with Taconite. > > > > Mike > > thanks for your response but I have de

[jQuery] Re: Select Tab Programatically

2008-04-08 Thread Mic
Thanks Klaus, I had seen this documentation but I just dont understand where the code goes. I was hoping to pass a parameter from the calling program like marr.adam suggested. EG: myprogram.php?tabSelected=2 However, this doesn't work. Where would I put the code you suggested and how does the pa

[jQuery] Pseudo drop down/select box

2008-04-08 Thread cj5
How can I mimmick the events of a select box, like the ones you find in forms? I want to create a quick link menu just like Google Groups has the My Groups menu (see above). Here is my attempt: $(document).ready(function() { $('#quicklinksmenu').css({left: $('#quicklinks').offset().left +

[jQuery] Re: Taconite with IE

2008-04-08 Thread alaiz007
On 9 avr, 00:48, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > I have a problem with a taconite script, he doesn't work in internet > > explorer but works well in Firefox. > > The problem is probably with this line: > > Nettoyant pour revêtement avec tampon applicateur 90ml > > specifically the

[jQuery] Re: Select Tab Programatically

2008-04-08 Thread Klaus Hartl
On Apr 8, 11:04 am, Mic <[EMAIL PROTECTED]> wrote: > Yes, I am using UI Tabs. Then you can use the tabs('select') method. Attach a handler to the link that'll activate the corresponding tab. Something like: var $tabs = $('#tabs').tabs(); $('#link').click(function() { $tabs.tabs('select', 3)

[jQuery] Re: flashing/blinking effect

2008-04-08 Thread Fontzter
Have a look at .animate, which can queue these effects. You could likely use opacity. http://docs.jquery.com/Effects/animate#paramsdurationeasingcallback Dave

[jQuery] Re: flashing/blinking effect

2008-04-08 Thread bcherry
If I'm not mistaken, you need setTimeoutInterval(). so, just make a timeout like this: setTimeoutInterval(2000,function(){$ (".element").css({backgroundColor:"none"});}); this will wait 2 seconds (2000 ms), and then apply background color "none" to each ".element". Feel free to place this where

[jQuery] Excel-like table functions

2008-04-08 Thread Fontzter
Hi, I am trying to implement Excel-like functions on an html table. Some of the cells are static and contain calculations and some have input boxes in them. The change event of the input boxes fires a recalculation function. This function does some Excel-like calculations on the table data. I

[jQuery] Re: cycle plugin with image Array

2008-04-08 Thread [EMAIL PROTECTED]
You're right, it needed the newer Cycle. Thank you :) On Apr 8, 11:15 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > I'm probably being really stupid - can't get this working! I keep > > getting error "addSlideFn is not a function". Your page has no errors, > > so it's certainly my mistake :/

[jQuery] Re: Taconite with IE

2008-04-08 Thread Mike Alsup
> I have a problem with a taconite script, he doesn't work in internet > explorer but works well in Firefox. The problem is probably with this line: Nettoyant pour revêtement avec tampon applicateur 90ml specifically the ê character. Try using a character reference (ê) instead. You must use

[jQuery] Taconite with IE

2008-04-08 Thread alaiz007
Hello, Sorry for my english, I have a problem with a taconite script, he doesn't work in internet explorer but works well in Firefox. the taconite code : - - - Nettoyant pour revêtement avec tampon applicateur 90ml 3.5 the javascript code : $('#nouveau a').hover(function(){

[jQuery] Re: two level tabs + drop-down for 3-rd level

2008-04-08 Thread sagannotcarl
Check out http://users.tpg.com.au/j_birch/plugins/superfish/ (and more specifically http://users.tpg.com.au/j_birch/plugins/superfish/richard-willis-example/). Is that sort of what you had in mind? Colin On Apr 7, 7:40 am, [EMAIL PROTECTED] wrote: > hi... my client wants to have a two level tab

[jQuery] UI Tabs - signal content change

2008-04-08 Thread Webarchitect
For each tab I have a script that checks to see if the content has been updated for a given tab. I am looking for a way to show in the UI that there is new content and the tab needs to be clicked on. The best way I could think of is to have the tab blink somewhat like programs do on the taskbar.

[jQuery] Re: Drag and Drop question

2008-04-08 Thread ripple
If you review the css and ready() function you will see something that looks like: helperclass: 'sortHelper', .sortHelper { border: 3px dashed #666; width: auto !important; } That should help. Andy Matthews <[EMAIL PROTECTED]> wrote: I'd think you'd just apply a c

[jQuery] JQuery developers available for Denver project?

2008-04-08 Thread KellyTech
Hi All, I am looking for a front end developer with experience developing in Javascript, Jquery, JSON, and Ajax. PHP and MySQL are preferred. This is a start up company located in Denver working on a government contract so no telecommuting, sorry. If you are available, send me an email with you

[jQuery] Re: is not a function

2008-04-08 Thread Ariel Flesler
The problem is that your 'this' changed. See: $j.getJSON( ..., function(){ //the this in here, is not the same as in the code before the getJSON. }); You need to do: var self = this; before calling getJSON, and then, inside this function, use self instead of this. You can name 'self

[jQuery] Re: Event delegation: jQuery ready solution for submit/reset in IE/Safari 2? jQuery.Listen?

2008-04-08 Thread Ariel Flesler
Excellent, let me know if you get something done. I'd like to support those events, but won't add tons of code just for that... Thanks -- Ariel Flesler http://flesler.blogspot.com/ On 8 abr, 07:14, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Scratch Safari, my Multi-safari version seems to not bein

[jQuery] Re: cycle plugin with image Array

2008-04-08 Thread Mike Alsup
> I'm probably being really stupid - can't get this working! I keep > getting error "addSlideFn is not a function". Your page has no errors, > so it's certainly my mistake :/ I just added the addSlide function the other day. Did you get the latest version? http://www.malsup.com/jquery/cycle/

[jQuery] flashing/blinking effect

2008-04-08 Thread rayfidelity
Hi, i want to create flashing/blinking effect but i'm having trouble with it. I know that the core effects are very limited...but still... i managed to create something to my liking with $ (".element").css({backgroundColor:"#ff"}).fadeOut("slow") but if i want it to just flash and not disap

[jQuery] Re: jQModal reload..how?

2008-04-08 Thread rayfidelity
Anyone? is it possible at all? On Apr 8, 11:08 am, rayfidelity <[EMAIL PROTECTED]> wrote: > Hi, > > Is it possible to reload the contents of a modal (jQModal) window > without closing and opening it again? The content is loaded via get > (default) i want the modal window to reload the same url...

[jQuery] Re: question about compatibility with IE v6

2008-04-08 Thread [EMAIL PROTECTED]
jQuery itself doesn't have any issues with ie6. What does drive me insane is that its css-based functions make several assumptions, which you then have to go back & correct for ie6. I've started creating 'iespecial.css' for jQuery sites. Last time I did anything like that, it was to accommodate v

[jQuery] Re: cycle plugin with image Array

2008-04-08 Thread [EMAIL PROTECTED]
I'm probably being really stupid - can't get this working! I keep getting error "addSlideFn is not a function". Your page has no errors, so it's certainly my mistake :/ I was using onBefore to make the 'extra' slides visible just in time: function onBefore() { $( this ).children( '.thumbjs' )

[jQuery] Re: Drag and Drop question

2008-04-08 Thread Andy Matthews
I'd think you'd just apply a class to the object during the drag process. If there's an onStart method, that would probably be your best bet. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vneal Sent: Tuesday, April 08, 2008 3:15 PM To: jQuery

[jQuery] Re: Drag and Drop question

2008-04-08 Thread vneal
Hi, that demo is pretty much the same as i've used - but thanks for letting me know re the updated version, i shall look there in future. As i've said before, i'm relatively new at this so really have no idea on how i would add the 'border effect' on the drag state. I'm thinking i might need to a

[jQuery] is not a function

2008-04-08 Thread hl
Hello. I'm somewhat new to javascript, primarily used to PHP, and I have been attempting to revamp my javascript code base using jQuery and some class structure. However, I'm getting the error "this.checkRequired is not a function". >From what I can find the documentation on classes in javascrip

[jQuery] what wrong in code?

2008-04-08 Thread R.O.M.
This code doesn't work in all browsers exept firefox. Why and what i must to do? Trouble: when button with id="newsitesubmit" was pressed there is no reaction, but in firefox all is ok. code: function getready() { $('#newsitesubmit').click(sendsite); }; function sendsite() { /* отправляем да

[jQuery] Re: jQuery Form Plugin target confusion

2008-04-08 Thread Mike Alsup
> Thanks Mike that did the trick. I want to ask a noob question about > the significance of the $ in front of the form variable that you > suggest. What is the difference besides using just form or set as that > variable name without a $ preceding it? No difference. It just helps me remember

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-08 Thread Mika Tuupola
On Apr 8, 2008, at 8:55 PM, [EMAIL PROTECTED] wrote: Thanks, but I think you missed the problem. 'Editable item' does work, but 'Editable tab 3' doesn't. The reason I included both a standard ul and tabs one controlled by UI in example was to prove there's nothing wrong with the editable() com

[jQuery] Sortable Serialization for nested lists

2008-04-08 Thread Scott Sauyet
No response over on the UI list. Perhaps someone here knows... Hi Folks, I think there's a problem with the serialization of nested lists inside Sortables. I have an altered version of the demo here: http://scott.sauyet.com/issues/2008-04-08a/ The Serialize button logs to the console i

[jQuery] Re: Is unbind() necessary if you use remove()?

2008-04-08 Thread tlphipps
doh. Now I feel really bad for not looking at the docs. Thank you very much for kindly pointing that out to me! On Apr 8, 12:17 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Apr 8, 2008, at 9:11 AM, tlphipps wrote: > > > > > I have some pages where I'm adding elements, then attaching click

[jQuery] Re: Drag and Drop question

2008-04-08 Thread Andy Matthews
There's a much newer version of the drag and drop found in the jQuery UI. I don't believe that the Interface plugins are being supported any more: http://ui.jquery.com and http://dev.jquery.com/view/trunk/ui/demos/ui.draggable.html -Original Message- From: jquery-en@googlegroups.com [ma

[jQuery] Drag and Drop question

2008-04-08 Thread vneal
Hi, can anyone help? A client has asked me to replicate the new BBC.co.uk homepage, with the drag and drop boxes. I've found a demo which pretty much does everything - http://interface.eyecon.ro/demos/sort.html - , but the only thing that is missing are the borders that appear when you pick up a

[jQuery] Re: jQuery Form Plugin target confusion

2008-04-08 Thread Iasthaai
Thanks Mike that did the trick. I want to ask a noob question about the significance of the $ in front of the form variable that you suggest. What is the difference besides using just form or set as that variable name without a $ preceding it? On Apr 8, 10:55 am, "Mike Alsup" <[EMAIL PROTECTED]>

[jQuery] Re: Autocomplete and JSON

2008-04-08 Thread Ashley Pond V
On Apr 8, 2008, at 10:53 AM, dineshv wrote: > Okay, I sorted out the previous problem and can get data from the > Python backend to the browser via the Autocomplete plugin. But, the > test data: > > data = ["string 1", "string 2", "string 3", "string 4", "string 5"] > > ... displays as one string

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-08 Thread [EMAIL PROTECTED]
Thanks, but I think you missed the problem. 'Editable item' does work, but 'Editable tab 3' doesn't. The reason I included both a standard ul and tabs one controlled by UI in example was to prove there's nothing wrong with the editable() command (as they both have the class .tabEdit). Can you con

[jQuery] hovering over a table based map

2008-04-08 Thread Brian Ronk
I have a table based map (each square of the table is a different map area) and would like to use a hover as a sort of legend. So, when I hover over an area, I get a popup, or something, that says "this is a rock and a chicken". My map is based on an array of 10x10 numbers (for the base) and the

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Jeffrey Kretz
I find putting the script files at the end to be invaluable from a performance standpoint. This also ties in with making the site degrade gracefully for those who still have javascript disabled. The site looks and works fine with no javascript at all. Once the page has been rendered, the script

[jQuery] Re: [validate] URL validation failing on a valid URL.

2008-04-08 Thread Jörn Zaefferer
js schrieb: You are right. Further tests show that it's only an issue in Safari 2.0.4. It works fine in Safari 3+, Firefox 2+, IE6+. Is Safari 2 in the list of supported browsers for jquery.validate? I never tested anything on Safari 2 and don't plan to change that. Assuming that Safari 2

[jQuery] Re: Cycle plugin: TypeError: Null value?

2008-04-08 Thread Andy Matthews
Okay...an update. I had two click events assigned to each nav button, oen from Cycle, and another custom. I explicitly unbound both buttons, then reassigned them and it works just fine. I don't feel that I should have to do that, but meh...it works, so I'm not complaining. The weird thing is that

[jQuery] Re: jQuery Form Plugin target confusion

2008-04-08 Thread Mike Alsup
> $(function() { > var _options = { > target: $( this ), > beforeSubmit: function(data, set, options) { > alert( $(set).attr( 'action' ) ); > } > } > $( '.form' ).ajaxForm( _options ); > }); > > > I've also tried using just the 'this' keyword. Anywa

[jQuery] Slow tabs

2008-04-08 Thread Glen Lipka
We are using tabs on this page: http://success.marketo.com/index.php There is a long delay (FF2) between click and the transition. Are we doing something wrong? Also, what is the best practice to make the tabs detail hidden until it finishes tabbifying the block? Thanks much, Glen

[jQuery] Re: Autocomplete and JSON

2008-04-08 Thread dineshv
Okay, I sorted out the previous problem and can get data from the Python backend to the browser via the Autocomplete plugin. But, the test data: data = ["string 1", "string 2", "string 3", "string 4", "string 5"] ... displays as one string item ie.: ["string 1", "string 2", "string 3", "string

[jQuery] jQuery Treeview Plugin FireFox Problems [treeview]

2008-04-08 Thread Barry
Hi all, First a caveat: I'm new to jQuery and JavaScript. I'm having trouble with the jQuery Treeview plugin. In my hands it doesn't work properly on Firefox. On either Jorn's demo page (http://jquery.bassistance.de/ treeview/demo/) or my own local implementations; when a parent node is colla

[jQuery] jQuery Form Plugin target confusion

2008-04-08 Thread Iasthaai
I'm using the jQuery form plugin and specifying my target as so: $(function() { var _options = { target: $( this ), beforeSubmit: function(data, set, options) { alert( $(set).attr( 'action' ) ); } } $( '.form' ).ajaxForm( _options ); }); I've also t

[jQuery] Re: Cycle plugin: TypeError: Null value?

2008-04-08 Thread Mike Alsup
> > Ah...no I'm not. That might be it. Is it just .stop()? > $('#slideshow').cycle('stop'); I'll change Cycle to do this automatically in the next version.

[jQuery] Re: Cycle plugin: TypeError: Null value?

2008-04-08 Thread Andy Matthews
Okay... That didn't seem to do anything. I'm explicitly stopping the slideshow, then starting it up again. It's still doing the same thing. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Tuesday, April 08, 2008 12:19 PM To: jq

[jQuery] Re: Cycle plugin: TypeError: Null value?

2008-04-08 Thread Andy Matthews
Ah...no I'm not. That might be it. Is it just .stop()? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Tuesday, April 08, 2008 12:19 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Cycle plugin: TypeError: Null value? >

[jQuery] Re: jquery tooltips

2008-04-08 Thread Karl Swedberg
You could look at Jörn Zaefferer's Tooltip plugin: http://plugins.jquery.com/project/tooltip Or, my clueTip plugin: http://plugins.jquery.com/project/cluetip --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Apr 8, 2008, at 10:07 AM, Vlad Mazek wrote: D

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Nicolas R
This is quite a nice topic for discussion as it touches on various important theoretical and practical issues. "All my sites validate perfectly with

[jQuery] question about compatibility with IE v6

2008-04-08 Thread Willis
I am investigating using jQuery for site I am developing. Most of my users will be coming to the site with IE. I went to this page http://docs.jquery.com/Tutorials:Live_Examples_of_jQuery but it did not display correctly. In my FF browser it worked find. Could some one let me know if there is a

[jQuery] Re: Help

2008-04-08 Thread Jonny Polite
Clearly. On Apr 8, 8:32 am, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > Spam? > > On Tue, Apr 8, 2008 at 4:46 AM, Sarah Johns <[EMAIL PROTECTED]> wrote: > > > Hello guys, i need some serious help here. My dad made a site, this > > http://www.videoriporter.hu. And he cant make it work. Can any of

[jQuery] Re: Nested Ajax callbacks not working in IE7

2008-04-08 Thread Dannster
Hi Jonny Yeah I tried that mate, it was still the same issue. It is definitely the JSON string in the data block that is causing the error. I just need to know how to get IE7 to like it Cheers Dannster

[jQuery] Toggle an Image Button using jQuery - Help Pls.

2008-04-08 Thread tfat
Can someone pls assist me with a means of performing the following using jQuery: Currently, I have an image src file with is like a button with an onClick event, which basically toggles two images. When this image button is clicked, i.e, starts with "Menu+" and when a user clicks on it, it toggle

[jQuery] Re: Cycle plugin: TypeError: Null value?

2008-04-08 Thread Mike Alsup
> I'm writing an AIR application, and using the excellent Cycle plugin as the > primary means by which to display data. It's been working perfectly until > right now. I'm basically getting new data into the app via a method which > takes a set of data, loops over it (creating a string of HTML). Th

[jQuery] Re: Is unbind() necessary if you use remove()?

2008-04-08 Thread Karl Swedberg
On Apr 8, 2008, at 9:11 AM, tlphipps wrote: I have some pages where I'm adding elements, then attaching click event handlers to them. Later on (based on user interaction), those elements are being removed from the page. Is there any benefit to calling unbind('click') on those elements before I

[jQuery] $.each on HTML string returned from AJAX?

2008-04-08 Thread OhNoMrBill
I am trying to run an .each on form subelements of some html returned in an AJAX request. Like so: var myReturnedText = "some text returned from server that contains one or more forms..."; $("form").each( function() { $(this).removeAttr("onsubmit"); } ); What I am having t

[jQuery] Cycle plugin: TypeError: Null value?

2008-04-08 Thread Andy Matthews
I'm writing an AIR application, and using the excellent Cycle plugin as the primary means by which to display data. It's been working perfectly until right now. I'm basically getting new data into the app via a method which takes a set of data, loops over it (creating a string of HTML). That string

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Jake McGraw
>From the comments on Yahoo Performance Rule # 5 http://developer.yahoo.net/blog/archives/2007/07/high_performanc_5.html: :: snip :: There are some cases where you wouldn't want your JS at the bottom. For example, if you were using an "ondomready" event that many of the js libraries supply, you

[jQuery] .load with getjson

2008-04-08 Thread tshafer
is it possible to use .load with .getjson? tom

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-08 Thread Mika Tuupola
On Apr 8, 2008, at 6:47 PM, Mika Tuupola wrote: On Apr 8, 2008, at 6:05 PM, [EMAIL PROTECTED] wrote: Hi Mika, Here's a sample: http://www.rymix.co.uk/jquery/d15/inline.html It doesn't actually _do_ anything, but if you look at server activity you'll see that ok.php never gets called. It ret

[jQuery] Re: corner plugin on Safari

2008-04-08 Thread Mike Alsup
> It looks like in the gpc() function that it's failing to find a valid > background and default to #ff, but no idea why Safari 3.1 fails > there. > > I've tried posting this to the plugin group, but that group doesn't > seem to allow new posts. Very weird. Is this only happening on Sa

[jQuery] Re: blockUI 2.02 question: default ajax behavior to block contextual element

2008-04-08 Thread Alexandre Plennevaux
ok i got your point: i was just being lazy going through 15 files changing all load() calls, but i'll do it. hey, at least i didn't have to make the plugin :) On Tue, Apr 8, 2008 at 5:30 PM, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > yes, but the problem is i don't know what is #myDiv at the

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-08 Thread Mika Tuupola
On Apr 8, 2008, at 6:05 PM, [EMAIL PROTECTED] wrote: Hi Mika, Here's a sample: http://www.rymix.co.uk/jquery/d15/inline.html It doesn't actually _do_ anything, but if you look at server activity you'll see that ok.php never gets called. It returns 'OK!' Regards, Firefox 2.0.0.13 on OSX. I d

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Mika Tuupola
On Apr 8, 2008, at 6:23 PM, Jake McGraw wrote: Regardless of whether it validates, it's considered best practices to keep all

[jQuery] Re: Remove script

2008-04-08 Thread hj
On Apr 7, 3:17 am, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > You'll need a record of every function and variable that a script > defines. Perhaps a function that does the "clean up". For instance > (untested): > > var blah = 3; > var blahblah = { 'f': 12 }; > > function aFunc() { }; > function aF

[jQuery] Re: selectors return type

2008-04-08 Thread deer421
I like that. I think it is clearer, especially for new users. Now who can change the documentation? Thanks, Soetji On Apr 7, 10:49 am, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi, > > I definitely see how the documentation can be confusing there. I think > the distinction was made because the

[jQuery] Re: Nested Ajax callbacks not working in IE7

2008-04-08 Thread Jonny Polite
Not sure why that wouldn't work, but have you tried putting your second AJAX call into a separate function that the first AJAX success calls? That's generally how I structure my code and I haven't had any browser issues so far. On Apr 8, 2:38 am, Dannster <[EMAIL PROTECTED]> wrote: > Hi Guys > >

[jQuery] Re: corner plugin on Safari

2008-04-08 Thread jonesbot
It looks like in the gpc() function that it's failing to find a valid background and default to #ff, but no idea why Safari 3.1 fails there. I've tried posting this to the plugin group, but that group doesn't seem to allow new posts. --jonesbot On Apr 7, 1:31 pm, Derek Allard <[EMAIL PROTEC

[jQuery] Re: jEditable issue in Firefox 2.0.0.13

2008-04-08 Thread [EMAIL PROTECTED]
Hi Mika, Here's a sample: http://www.rymix.co.uk/jquery/d15/inline.html It doesn't actually _do_ anything, but if you look at server activity you'll see that ok.php never gets called. It returns 'OK!' Regards, Steve On Apr 8, 11:06 am, Mika Tuupola <[EMAIL PROTECTED]> wrote: > On Apr 7, 2008, at

[jQuery] Re: Same code structure to affect two elements, but one doesn't work

2008-04-08 Thread Cristian
I was so into learning JQuery when this happened that I thought the problem was caused by my lack of knowledge of JQuery. I never thought CSS specificity could be involved. Thank you so much for your help.

[jQuery] Issue with fadeIn/Out over show/hide...

2008-04-08 Thread Dan M
All, I noticed a difference with fadeIn() over show() that forced me to use show() when I wanted to use fadeIn()... I have some elements in a div, and the background color of the div is different from the rest of the page so you know that these elements are grouped together. When the page loads,

[jQuery] Re: Nested Ajax callbacks not working in IE7

2008-04-08 Thread Dannster
OK Guys I have narrowed it down It is not the fact that the ajax requests are nested, it is down to the format of the JSON string in the data: block I narrowed the example down to something really simple $.ajax({ type: "POST", data: '{"name":"dave"}',

[jQuery] Re: problem with tablesorter and dynamic table content

2008-04-08 Thread Jonny Polite
Building the entire table in the javascript is more annoying, but it definitely worked. Thanks. On Apr 5, 11:04 pm, Matt Grimm <[EMAIL PROTECTED]> wrote: > I also ran across this issue with dynamically loaded tbody content. I > came to the conclusion, after poring over the tablesorter source cod

[jQuery] Hover spanning

2008-04-08 Thread MBK
We used the superfish example css page below and modified it slightly. The problem now is that list item hover does not span the entire box only in IE. The screenshot below (contact box) shows an example where the opposing color does not span across the entire box. Screen shot: http://developme

[jQuery] jquery tooltips

2008-04-08 Thread Vlad Mazek
Does anyone have a favorite tooltip plugin for jquery? I am currently using jTip for some AJAX popups but I have a need to just add some better documentation in the current UI and jTip is mainly meant for AJAX. Does anyone have a recommendation? I only found one other plugin and it was 120Kb in si

[jQuery] Re: Help

2008-04-08 Thread Jake McGraw
Spam? On Tue, Apr 8, 2008 at 4:46 AM, Sarah Johns <[EMAIL PROTECTED]> wrote: > > Hello guys, i need some serious help here. My dad made a site, this > http://www.videoriporter.hu . And he cant make it work. Can any of you > help me? Thank you Sarah >

[jQuery] Re: blockUI 2.02 question: default ajax behavior to block contextual element

2008-04-08 Thread Mike Alsup
> yes, but the problem is i don't know what is #myDiv at the time i set > blockUI as default ajax action. And yes, i get the data via load(). But you know what #myDiv is when you call load. With element blocking you can just chain the block and load calls. $('#myDiv').block().load('myurl', fu

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Jake McGraw
Regardless of whether it validates, it's considered best practices to keep all

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Mika Tuupola
On Apr 8, 2008, at 6:06 PM, Jake McGraw wrote: Mixing content and logic, a no no for "standardistas". It really depends on how much content you have on any given page. I'd suggest using both the head and "footer" methods to determine what provides the best end user experience Vs what keeps you

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Jake McGraw
Mixing content and logic, a no no for "standardistas". It really depends on how much content you have on any given page. I'd suggest using both the head and "footer" methods to determine what provides the best end user experience Vs what keeps your pages standard compliant. - jake On Tue, Apr 8,

[jQuery] Re: Browsers incompatibility

2008-04-08 Thread MorningZ
Might help others help you if you give a snippet of the code that doesn't work

[jQuery] Re: Jquery spell checker

2008-04-08 Thread Bil Corry
rsmolkin wrote on 4/4/2008 7:53 AM: Has anyone seen a spell checker for text areas written in Jquery? I'm looking for one that is either stand-alone or can be used via AJAX connecting to ColdFusion. I would like to add a spell checker to all text areas that will work like Gmail. I've been t

[jQuery] Re: blockUI 2.02 error ?

2008-04-08 Thread Alexandre Plennevaux
nope, using the same browser , i don't get the error. Must be in my code, but i wonder where. it's gotten so long in a six month development time :) On Tue, Apr 8, 2008 at 3:52 PM, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > > strange, i'm using Firefox 2.0.0.13 on windows xp SP2. > > > > We

[jQuery] Re: blockUI 2.02 question: default ajax behavior to block contextual element

2008-04-08 Thread Alexandre Plennevaux
yes, but the problem is i don't know what is #myDiv at the time i set blockUI as default ajax action. And yes, i get the data via load(). Following your suggestion, i'll keep on trying... Tue, Apr 8, 2008 at 3:51 PM, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > On Tue, Apr 8, 2008 at 9:42 AM, Al

[jQuery] Re: blockUI 2.02 error ?

2008-04-08 Thread Mike Alsup
> > strange, i'm using Firefox 2.0.0.13 on windows xp SP2. > > Well that's odd. Can you post a link? If not, can you debug and see > why it's getting to that line? > Do you get errors on the demo page? http://www.malsup.com/jquery/block/

[jQuery] Re: blockUI 2.02 error ?

2008-04-08 Thread Alexandre Plennevaux
i'll put a link brb On Tue, Apr 8, 2008 at 3:42 PM, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > strange, i'm using Firefox 2.0.0.13 on windows xp SP2. > > Well that's odd. Can you post a link? If not, can you debug and see > why it's getting to that line? > -- Alexandre Plennevaux LAb[a

[jQuery] Re: blockUI 2.02 question: default ajax behavior to block contextual element

2008-04-08 Thread Mike Alsup
On Tue, Apr 8, 2008 at 9:42 AM, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote: > > hi again! > > i understand from the blockUI doc that using this super simple call, i > can default all ajax calls to use blockUI. > > $().ajaxStart($.blockUI).ajaxStop($.unblockUI); > > > Yet, i would like to

[jQuery] blockUI 2.02 question: default ajax behavior to block contextual element

2008-04-08 Thread Alexandre Plennevaux
hi again! i understand from the blockUI doc that using this super simple call, i can default all ajax calls to use blockUI. $().ajaxStart($.blockUI).ajaxStop($.unblockUI); Yet, i would like to know if it would be possible for the default behaivour to block the related element (that will receiv

[jQuery] Re: blockUI 2.02 error ?

2008-04-08 Thread Mike Alsup
> strange, i'm using Firefox 2.0.0.13 on windows xp SP2. Well that's odd. Can you post a link? If not, can you debug and see why it's getting to that line?

[jQuery] Re: $(window).bind("load",function(){ vs onready

2008-04-08 Thread Mika Tuupola
On Apr 8, 2008, at 6:30 AM, coughlinsmyalias wrote: I have heard about loading them at the end of the page, I would love to see statistics on it as well. I understand this all now, I kept seeing both and I was confused each of them. When possible JavaScript should be loaded in the end of th

[jQuery] Re: blockUI 2.02 error ?

2008-04-08 Thread pixeline
hello Mike, strange, i'm using Firefox 2.0.0.13 on windows xp SP2. On 8 avr, 15:20, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > > i'm trying to use blockUI v 2.02, but i get this error message: > > > Erreur : s.setExpression is not a function > > Fichier source : > > http://localhost/lab-au.

[jQuery] Re: blockUI 2.02 error ?

2008-04-08 Thread Mike Alsup
> i'm trying to use blockUI v 2.02, but i get this error message: > > Erreur : s.setExpression is not a function > Fichier source : > > http://localhost/lab-au.com/dev/_js/jquery_plugins/blockUI/2.02/jquery.blockUI.js > Ligne : 163 What browser are you using Alex? That code should only exe

[jQuery] Is unbind() necessary if you use remove()?

2008-04-08 Thread tlphipps
I have some pages where I'm adding elements, then attaching click event handlers to them. Later on (based on user interaction), those elements are being removed from the page. Is there any benefit to calling unbind('click') on those elements before I remove() them? Or does remove() effectively

[jQuery] blockUI 2.02 error ?

2008-04-08 Thread Alexandre Plennevaux
Hello! i'm trying to use blockUI v 2.02, but i get this error message: Erreur : s.setExpression is not a function Fichier source : http://localhost/lab-au.com/dev/_js/jquery_plugins/blockUI/2.02/jquery.blockUI.js Ligne : 163 this is how i call blockUI $(document).ready(function(){ // lots o

[jQuery] UI Tabk issue in Vista + Firefox 2.0 and 2.0.0.7 version

2008-04-08 Thread WrVishnu
Hi jquery UI tabs is not displaying properly in Windows Vista with firefox browser version 2.0 or 2.0.0.7 Tabs are displaying as list instead for displaying as tab, it works fine latest version FF and IE7 Can anyone help pls

[jQuery] Re: Select Tab Programatically

2008-04-08 Thread Mic
Yes, I am using UI Tabs. On Apr 8, 4:34 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Do you use UI Tabs? > > On Apr 8, 12:37 am, Mic <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I am a newby to jQuery and have a problem I can not figure out. I want > > to be able to select a tab thru a link. In o

[jQuery] Possible Bug?

2008-04-08 Thread McIntozh
Hi together, I use jQuery for my daily work. Today I encountered a strange problem: If I write a list of OPTIONS into a SELECT box by using JavaScript this works fine in Firefox either with jQuery and also without. But when the list of options starts with a html-comment jQuery removes all the opt

[jQuery] Re: unresponsive script error on long page with many clueTips

2008-04-08 Thread az
Thanks for the explanation, Karl. That makes a lot of sense. Your chunking solution does seem to prevent the unresponsive script errors when the page is loading. However, I still get them when I navigate away from the page -- I assume jquery is unbinding all of the cluetips. For that reason an

[jQuery] Browsers incompatibility

2008-04-08 Thread yazid
I had made a function using Jquery to show the servers time but whereas this works properly on firefox, it didn't on internet explorer, whats the solution please

  1   2   >