[jQuery] Re: Opera 9 bug

2007-08-08 Thread Gordon
Nobody got any ideas why this is happening? It seems pretty obvious an Opera bug of some kind rather than any particular problem with jQuery itself, but it is nonetheless very annoying. Has anyone else encountered a problem like this or know how to work around it? On Aug 7, 6:10 pm, Gordon

[jQuery] Re: jQuery Zen Garden Interface

2007-08-08 Thread Erik Beeson
There is a weird glitch in FF2/Mac. The left scrolling pane works properly with the mouse wheel, but the scroll bar looks like it's making content in the background scroll. The content that is supposed to scroll doesn't move when using the scroll bar. It works correctly in Safari/Mac. Otherwise,

[jQuery] Re: [Announce] charToTable plugin

2007-08-08 Thread Ganeshji Marwaha
thats was funny, and interesting... But seriously, we should find a better way to filter spammers... atleast something interesting and not so boring as typing some obscure letters. -GTG On 8/7/07, Robert O'Rourke [EMAIL PROTECTED] wrote: Ganeshji Marwaha wrote: By using this instead of

[jQuery] Re: [New Plugins] Ajax Queue and Ajax Sync

2007-08-08 Thread Ganeshji Marwaha
I didnt find much use for these right now, but i am sure, the day won't be far when this will save my day... I am more interested in a plugin (or in the core itself) that will allow me to tell jquery what an error as it applies to ajax. At present, i guess that it is hard-coded within, which is

[jQuery] Re: [New Plugins] Ajax Queue and Ajax Sync

2007-08-08 Thread Klaus Hartl
John Resig wrote: Hey everyone - So Mike Hostetler was telling me about some Ajax queueing plugins that he wanted to write - so I got some ideas, and less than an hour later - here are two new Ajax queueing plugins for you to enjoy! Lame demo: http://dev.jquery.com/~john/plugins/ajaxqueue/

[jQuery] Re: Nested Tables Question

2007-08-08 Thread Rob Desbois
Hi Mike, If you use $(table table) that will select all tables which are inside another table in the document. --rob On 8/7/07, Mike Miller [EMAIL PROTECTED] wrote: Hi, I need to find a quick way to determine whether or not table elements on the page have any children table elements...as

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-08 Thread Robert O'Rourke
m3avrck wrote: Hey folks, So I'm trying to combine the excellent jQuery tabs (www.stilbuero.de/ jquery/tabs/) with jqModal (http://dev.iceburg.net/jquery/jqModal/) and am having a bit of trouble in IE6. Basically, you click a button, jqModal pops up with some tabs. Easy, you'd think, but then

[jQuery] Re: jQuery Zen Garden Interface

2007-08-08 Thread Richard D. Worth
Very nice! What a great demonstration of the power of jQuery. A couple things as I was playing around: - Your Sort Modes checkboxes are acting like 2 sets of radio buttons (Text -or- Icon, FirstLast -or- LastFirst -or- Taxonomic) - With the Sound on checkbox unchecked, the sound still plays for

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Josh Bush
Oh, it's fine. I wasn't expecting someone to write the code for me. I'm just working on a plugin and hitting a roadblock with IE here. I'm going to try and whip up an example of what I'm seeing that illustrates this outside of my project. It seems like the string operations aren't the

[jQuery] Re: [New Plugins] Ajax Queue and Ajax Sync

2007-08-08 Thread Mike Fern
On 8/8/07, John Resig [EMAIL PROTECTED] wrote: Hey everyone - So Mike Hostetler was telling me about some Ajax queueing plugins that he wanted to write - so I got some ideas, and less than an hour later - here are two new Ajax queueing plugins for you to enjoy! Lame demo:

[jQuery] Re: Jquery can show Images from file:///C:?

2007-08-08 Thread Justin Sepulveda
No. On Aug 7, 4:28 pm, Mario Moura [EMAIL PROTECTED] wrote: Hi folks What I am trying is show an image into my browser with this tag img width=50 height=50 src=file:///C:/Users/example.JPG/ into my browser. Is it possible? or is a security lock from browsers? I am using $.post() So I

[jQuery] Re: Making periodical calls per Ajax?

2007-08-08 Thread [EMAIL PROTECTED]
Try this: http://www.jasons-toolbox.com/JHeartbeat/ On Aug 7, 9:56 pm, voltron [EMAIL PROTECTED] wrote: Howdy! how does one making periodical Ajax calls using Jquery? Thanks

[jQuery] Re: Swapping img src in IE shows blank

2007-08-08 Thread Frank
One suggestion, if it is not already done, is to preload the images. On Aug 7, 11:35 am, gecko68 [EMAIL PROTECTED] wrote: I am trying to swap an image src using jquery, and in FF it works great, in IE6, its sometimes shows the image, and other times shows nothing.

[jQuery] Re: BlockUI: Odd behaviour in Internet Explorer

2007-08-08 Thread bhusan
Hi Mike, i updated my jquery.blockUI.js with the latest one what u present in the link. Now i used $.ajax ({ type: 'GET', dataType: 'xml', url : 'foo' , complete: function () {

[jQuery] Re: Jquery native HTML editor

2007-08-08 Thread voltron
Thanks On Aug 7, 11:08 pm, Glen Lipka [EMAIL PROTECTED] wrote: Some discussions on the topic:http://groups.google.com/group/jquery-ui/browse_thread/thread/5423ce2... Glen On 8/7/07, voltron [EMAIL PROTECTED] wrote: Hi all, I would like to know if progress has been made on the

[jQuery] Selecting attributes of an element

2007-08-08 Thread voltron
Excuse my newbiness, how do I select a particular attribute of an element? Example: li test1 =foo test2=bar foobar/li how do I select and return the test1 attribute? Thanks

[jQuery] appfuse: jQuery + scriptaculous + datePicker

2007-08-08 Thread syg6
Hello all. I posted this over at Appfuse's Nabble list as first, but then thought this would be the better place. I have a default.jsp page that uses SiteMesh to 'decorate' all of my jsps. It contains the following js libraries: prototype.js scriptaculous.js global.js In order to use

[jQuery] Re: Making periodical calls per Ajax?

2007-08-08 Thread voltron
Thanks Erik, I know about setInterval and setTimeout, I thought there was a Jquery-ish way to doe this, as in a value to set ind one of the Jquery Ajax methods in the API :-) It seems as if the jHeartBeat plugin is not maintained anymore. On Aug 7, 11:07 pm, Erik Beeson [EMAIL PROTECTED]

[jQuery] [New plugin] jQuery.YAV an easy web form validation using YAV library

2007-08-08 Thread SeViR
Hi all, I just upload of my spare times in holidays ;-) . jQuery.YAV is a new plugin with the good things of YAV library and jQuery.Validation of Jörn Zaefferer. Some features: * Rules as class names. Set a rule class name in the field and the title and it will be validated. * Functions

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Kai Kuehne
Hi Josh, On 8/8/07, Josh Bush [EMAIL PROTECTED] wrote: Well, I feel stupid. it's not the join that's taking so long, it's the $( really big DOM string with 1,000 rows and 3 columns) that takes so dang long on IE7. After all of this rambling, does anyone have any options for me to try? I'm

[jQuery] Re: Iframe events for local pages

2007-08-08 Thread julio
Ok thanks:) it works but I'm interested to touch less possible sample.html. And so I have tried this in main.html: function doBind() { var frame=document.getElementsByTagName(iframe) [0].contentDocument.documentElement; $(frame).bind('click', function(event) { alert('an element in frame is

[jQuery] Problem with updating lists using jQuery

2007-08-08 Thread Adam
What I am trying to do is this. I have an unordered list. Each item has a link to remove the item, and above is a simple form to add a new item. HTML: ul id=propertyList li id=1a href=javascript: void(0) title=Delete class=deletePropertyItem 1/li li id=2a href=javascript: void(0)

[jQuery] Re: An open letter to non-Believers...

2007-08-08 Thread Pops
On Jul 11, 5:54 am, Stephan Beal [EMAIL PROTECTED] wrote: A public jQuery forum is probably not the place to address non- Believers - that is, people who do not use jQuery - but my hope is that some of the Believers here will take this and pass it on to any non-Believers who they know, to

[jQuery] Known Opera javascript bugs list

2007-08-08 Thread Gordon
Does anyone know if there is a list of known JavaScript bugs for Opera 8? I did a significant rewrite of a section of code recently for a speedup. The speedup I got was pretty massive, especially so in IE, and it works in all my test browsers (IE6 and 7, Firefox 1.5, Safari 3 beta and Opera 9),

[jQuery] Re: appfuse: jQuery + scriptaculous + datePicker

2007-08-08 Thread Kelvin Luck
Hi, Have you seen this page? http://docs.jquery.com/Using_jQuery_with_Other_Libraries Hope it helps, Kelvin :) syg6 wrote: Hello all. I posted this over at Appfuse's Nabble list as first, but then thought this would be the better place. I have a default.jsp page that uses SiteMesh to

[jQuery] Re: appfuse: jQuery + scriptaculous + datePicker

2007-08-08 Thread Klaus Hartl
syg6 wrote: Hello all. I posted this over at Appfuse's Nabble list as first, but then thought this would be the better place. I have a default.jsp page that uses SiteMesh to 'decorate' all of my jsps. It contains the following js libraries: prototype.js scriptaculous.js global.js In order

[jQuery] Re: Iframe events for local pages

2007-08-08 Thread julio
I solved with this: function doBind() { var frame; if ($.browser.msie) { frame = document.frames[0].document; } else { frame = document.getElementsByTagName(iframe) [0].contentDocument.documentElement; } $(frame).bind('click', function(event) { alert('an element in

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Luke Lutman
From the sound of it, you're receiving data back from the server, generating html, then passing that html to .append() right? I'd try using standard dom methods (i.e. document.createElement('td')), and avoid converting the strings at all. When jQuery converts an html string, it does a bunch

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Rich Wild
Hi Josh, Not answering the question, but does your app really require 1000+ table rows to be displayed at once? Would some pagination not be more appropriate? This wouldn't just help the speed of the build, but it'd also really help the poor person that otherwise has to scroll through 1000 rows.

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Josh Bush
Okay, I slapped together a test. It's up at http://digitalbush.com/tests/speed_woes.html The big deal is how long it takes for the jQuery object to get created on IE7 vs any other browser. I haven't tried IE6 and lower, but I have tried FF2, Safari 3 Beta, and Opera. Thank You Josh On Aug

[jQuery] Re: Problem with updating lists using jQuery

2007-08-08 Thread Richard D. Worth
On 8/8/07, Adam [EMAIL PROTECTED] wrote: // When a delete link clicked, remove that list item from list $(a.deleteProperty,$(#propertyList li)).click(function() { $(this.parentNode).remove(); } ); This code runs once and attaches the click handler above to the existing a.deleteProperty

[jQuery] Opera-friendly way of deleting the members of an object

2007-08-08 Thread Gordon
I think I found the problem. I had an object I was using to store a list of elements that was being shared between a number of other objects. Before doing a loop to determine what I needed to include in the object I'd clear out the old values. At first I was doing it like this: foo = {}; but

[jQuery] Re: Selecting attributes of an element

2007-08-08 Thread Richard D. Worth
On 8/8/07, voltron [EMAIL PROTECTED] wrote: Excuse my newbiness, how do I select a particular attribute of an element? Example: li test1 =foo test2=bar foobar/li how do I select and return the test1 attribute? var test1val = $(li).attr('test1'); alert(test1val == foo); See

[jQuery] Re: Draggable - change revert after start and before stop

2007-08-08 Thread Richard D. Worth
My guess would be that the code you've tried doesn't work because it is more akin to creating a new Draggable, not modifying the existing one. I don't know that Interface Draggables has any support for what you're trying to do. As it is in maintenance mode (bug fixes only) and new development is

[jQuery] Re: [New Plugins] Ajax Queue and Ajax Sync

2007-08-08 Thread Mike Alsup
Ganeshji, I you want control over ajax error handling you can just redefine the jQuery.httpSuccess function. That fn simply returns a boolean. It is currently implemented as follows: httpSuccess: function( r ) { try { return !r.status location.protocol == file: || (

[jQuery] Re: Form Plugin: Submitting async?

2007-08-08 Thread Mike Alsup
Arne, I agree with Dan that this sounds like a config issue. I have never seen the file uploads open a new tab like you describe and if you figure out why it's happening please send me a note about your findings. Just to clarify the IFrame upload logic; it is synchronous. The logic simply

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Cees
Done some digging : On Aug 7, 9:08 pm, polyrhythmic [EMAIL PROTECTED] wrote: I first noticed this problem with 1.1.2 + Thickbox 3, and from my testing I believe it is a problem with the thickbox CSS, not with jQuery itself. Hmm - but if i switch back to Jquery 1.1.2 the problem is gone on my

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Cees
Hmm - browsing through the topic i read this at the top : On Aug 6, 9:15 pm, Andy Matthews [EMAIL PROTECTED] wrote: I have a page which contains a long listing of records. When I scroll down to the bottom, and click the thickbox trigger link, thickbox opens the modal window, but it's at the

[jQuery] Re: Draggable - change revert after start and before stop

2007-08-08 Thread Erik Beeson
I had done this, but now I'm using a modified version of Interface, so I can't quite remember which parts require the modifications. Like Richard said, creating a new Draggable is definitely not what you want to do. I suggest you try: $(...).Droppable({ ..., onHover: function(drag) {

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Josh Bush
I totally expected this question. We've added client side filtering to aid the user in trimming that list down which is working very well for us speed wise. The case where a 1,000 row query comes back is not the norm, so for us it doesn't make sense to add the complexity (UI wise) of paging for

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Josh Bush
Do you think this would be faster all the way around across platforms? I've never actually done any direct dom creation stuff, so this will be new to me. Josh On Aug 8, 6:05 am, Luke Lutman [EMAIL PROTECTED] wrote: From the sound of it, you're receiving data back from the server,

[jQuery] Re: Iframe events for local pages

2007-08-08 Thread Erik Beeson
To get elements by tag name in jQuery, do $('tagName') Also, I suggest you do feature detection instead of browser detection, as described here: http://www.quirksmode.org/js/support.html What I mean is, try something like this: var frame = $('iframe')[0]; var frameDocument;

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Klaus Hartl
Cees wrote: Hmm - browsing through the topic i read this at the top : On Aug 6, 9:15 pm, Andy Matthews [EMAIL PROTECTED] wrote: I have a page which contains a long listing of records. When I scroll down to the bottom, and click the thickbox trigger link, thickbox opens the modal window, but

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Dan G. Switzer, II
Josh, Well, I feel stupid. it's not the join that's taking so long, it's the $( really big DOM string with 1,000 rows and 3 columns) that takes so dang long on IE7. After all of this rambling, does anyone have any options for me to try? Sorry, for the self-dialog here. Just for testing

[jQuery] Re: Iframe events for local pages

2007-08-08 Thread Klaus Hartl
Erik Beeson wrote: To get elements by tag name in jQuery, do $('tagName') Also, I suggest you do feature detection instead of browser detection, as described here: http://www.quirksmode.org/js/support.html What I mean is, try something like this: var frame = $('iframe')[0]; var

[jQuery] Re: An open letter to non-Believers...

2007-08-08 Thread Stephan Beal
On 8/8/07, Yehuda Katz [EMAIL PROTECTED] wrote: Hey, Send it to [EMAIL PROTECTED] :-D Hi, Yehuda! i did, a day or two after i originally posted it, but got no response. :( -- - stephan beal http://wanderinghorse.net/home/stephan/

[jQuery] some elements showing through thickbox

2007-08-08 Thread Anthony Leboeuf(Worcester Wide Web)
Hello everyone, Having a problem with thickbox, if you click send to a friend on the top right of this page http://wcmp.org/ You can see that some elements show through, I tried fixing this with z-index. I believe its because the menu css is set to absolute. Is there any way to fix this?

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Cees
On Aug 8, 3:10 pm, Klaus Hartl [EMAIL PROTECTED] wrote: I'd like to know if the bug occurs in IE 7 or IE 6? The expression is used to emulate fixed positioning in IE 6, IE 7 supports fixed positioning. Bug only occurs in IE6 (btw IE7 runs in Standards mode for my page).

[jQuery] Re: some elements showing through thickbox

2007-08-08 Thread Olaf Bosch
Anthony Leboeuf(Worcester Wide Web) schrieb: Hello everyone, Having a problem with thickbox, if you click send to a friend on the top right of this page http://wcmp.org/ You can see that some elements show through, I tried fixing this with z-index. I believe its because the menu css is

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Josh Bush
I had read somewhere that IE didn't support .innerHTML for the tbody element. Will I have to recreate the entire table HTML? Sorry for the noob question; I'm still a fish out of water in javascript at times. Josh On Aug 8, 8:18 am, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Josh, Well, I

[jQuery] [NEWS] jQuery in 15 Minutes Slideshow on Ajaxian

2007-08-08 Thread Rey Bango
Ajaxian has a post describing Simon Willison's slideshare presentation jQuery in 15 minutes. The preso gives a nice view of some of jQuery's features and is a good intro for anyone wanting to know more about jQuery. http://ajaxian.com/archives/jquery-in-15-minutes

[jQuery] Re: An open letter to non-Believers...

2007-08-08 Thread Stephan Beal
On 8/8/07, Pops [EMAIL PROTECTED] wrote: did was interrnal, no dependencies, plus, how can you compare pcode compile server side applets to a slower PHP interpreative environment which in reality did yield slower page rendering. But PHP has always been relatively fast compared to, e.g. Java

[jQuery] Re: Draggable - change revert after start and before stop

2007-08-08 Thread seedy
I have done this simply by hiding the dragger when it gets dropped $('dropper').Droppable({accept:'dragger', ondrop: function(drag){ $('.dragger').css('visibility','hidden')} }); This may work out for you depending on if you need to Keep the dragger visible or not. In my case, I

[jQuery] Re: Selecting attributes of an element

2007-08-08 Thread voltron
Thanks On Aug 8, 2:04 pm, Richard D. Worth [EMAIL PROTECTED] wrote: On 8/8/07, voltron [EMAIL PROTECTED] wrote: Excuse my newbiness, how do I select a particular attribute of an element? Example: li test1 =foo test2=bar foobar/li how do I select and return the test1 attribute?

[jQuery] ClueTIP name=Title showing in IE.

2007-08-08 Thread Pops
Karl, Found a IE vs FF behavior difference. The A links are using name=title attributes. In FF, they are not shown or atleast the delay is shown that the AJAX results appears and the title tip does not. In IE, it is always shown, so now you have two tips showing. -- HLS On Aug 7, 9:03 pm,

[jQuery] Metdata

2007-08-08 Thread astik
Hi all, I've got some problems with the metadata plugin. First, i tried to use it on element that are cloned. Metadata are not cloned and are shared with all the cloned elements and the original one. The second thing i'm trying to do is to put class type metadata (named myId) on each tr of a

[jQuery] How to check input field

2007-08-08 Thread Johny
In a form there is an input field where users insert their email address. How can I check if it is the valid email or that it consists `@' . Thank you for help L.

[jQuery] Re: appfuse: jQuery + scriptaculous + datePicker

2007-08-08 Thread syg6
Thank you both, Kelvin and Klaus, for your replies. Yes, I saw that page and after a quick read decided (incorrectly) it was above my jQuery pay-grade and that it didn't apply to me. But as it turns out, if I put the jQuery.noConflict(); line in my page before calling the datePicker() function,

[jQuery] Thickbox with Forms Plugin

2007-08-08 Thread Dough Boy
Hey all. I am trying to use thickbox with the forms ajax plugin to upload files. I have copied the example exactly. However when I go to submit the form, the entire page is reloaded with the success message. I don't know if the forms plugin is having problems connecting to the form because

[jQuery] tabs, cookies and keeping state

2007-08-08 Thread K Bouton
I am using Klaus' tabs plugin with ajaxform and tabs remote:true. What I am trying to do is have a user login, then set up tabs based on their database profile. Each tab is a remote tab to a separate php page which requires a parameter to be passed in eg the file the tab call is

[jQuery] Re: BlockUI: Odd behaviour in Internet Explorer

2007-08-08 Thread Mike Alsup
Hi Bhusan, I'll see if I can figure out what the issue is with this. Mike also but the progress bar is still showing incomplete.I am not able to find out any solution for this.If the progress bar is showing in loading state only. Please guide me on this. Regards Bhusan

[jQuery] Re: appfuse: jQuery + scriptaculous + datePicker

2007-08-08 Thread Kelvin Luck
Because you are using jQuery in noConflict mode you can no longer use $ to create jquery objects. So you need to replace: $('.date-pick').datePicker({clickInput:true}); with: jQuery('.date-pick').datePicker({clickInput:true}); Hope that helps, Kelvin :) syg6 wrote: Thank you both,

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Andy Matthews
Klaus... That helps...but I won't know in advance if someone is using 6 or 7. Is there a way to force this hack to only apply to the correct browser version? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Wednesday,

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Klaus Hartl
Andy Matthews wrote: Klaus... That helps...but I won't know in advance if someone is using 6 or 7. Is there a way to force this hack to only apply to the correct browser version? Yes, make sure that IE 7 runs in standards mode. --Klaus

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Andy Matthews
I'm working on legacy code, I don't think we're even specifying a doctype. Short of forcing a doctype on IE7, is there any other way around it? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Wednesday, August 08, 2007 9:12 AM

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Klaus Hartl
Andy Matthews wrote: I'm working on legacy code, I don't think we're even specifying a doctype. Short of forcing a doctype on IE7, is there any other way around it? Overwrite the particular properties with selectors with higher specificity and hide them from IE 6: htmlbody #TB_window { /*

[jQuery] Re: Thickbox - why isn't the window centered?

2007-08-08 Thread Andy Matthews
Great. I'll give that a shot Klaus. Thank you. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Wednesday, August 08, 2007 9:32 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Thickbox - why isn't the window centered?

[jQuery] Re: Iframe events for local pages

2007-08-08 Thread julio
Ok, thanks for useful replies. Last question: I know that is not possible load dinamically filename.css for a iframe content. And so I need to put: link rel=stylesheet href=filename.css in sample.html (page loaded in iframe). Do you know if exist a way to toggle/add/removeClass in jquery

[jQuery] Announcement: Spoilers plugin

2007-08-08 Thread Stephan Beal
Hi, all! Yet another plugin: http://jquery.com/plugins/project/Spoilers Demo: http://wanderinghorse.net/computing/javascript/jquery/spoilers/demo.html It is used to hide spoiler text from casual readers, who can reveal the text by mousing over it. See the web site for an example of how this

[jQuery] Re: Announcement: Spoilers plugin

2007-08-08 Thread Benjamin Sterling
Stephan, That kinda cool, thanks for sharing. On 8/8/07, Stephan Beal [EMAIL PROTECTED] wrote: Hi, all! Yet another plugin: http://jquery.com/plugins/project/Spoilers Demo: http://wanderinghorse.net/computing/javascript/jquery/spoilers/demo.html It is used to hide spoiler text from

[jQuery] Re: tooltip effect problem

2007-08-08 Thread seedy
It looks like the interface tooltip is automatically adding that text for you, I am not sure what the best way to trim the text for this plugin would be. You might want to look at some other tooltip plugins such as http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/ Tooltip or

[jQuery] i need to build a tree dynamic...

2007-08-08 Thread cesar c
Hi!!! I've a doubtI dont know how to implement a tree dinamic with jquery... I see de treeview api but the tree's structure is in the body how can i build dynamically this tree with jquery?

[jQuery] Postcode Regex Form Validation

2007-08-08 Thread Matthew
Just spent a while working out how to do this with the form Validation plugin from http://bassistance.de/jquery-plugins/jquery-plugin-validation/ , but it's actually really logical when you get it. Still, might save someone else the effort! UK Postcodes have a fixed format and a standard regex

[jQuery] Re: Announcement: Spoilers plugin

2007-08-08 Thread Dan G. Switzer, II
You like developing plugins don't you? ;) How about an option to show the spoilers when you click on a link 'show spoilers'. I've seen a few forums (can't think of the exact URL's off the top of my head though) that have this. e.g. $ ('.jqSpoiler').initSpoilers(click) or $

[jQuery] Re: tooltip effect problem

2007-08-08 Thread seedy
senzacionale wrote: i have one problem with tooltip effect I want to cut url adress, becouse if it is too long then it show over the edge, over the witdh: 150px. how can i cut it? I think this a more of a problem with the browser (Im guessing you are using firefox) , than with the

[jQuery] Re: Announcement: Spoilers plugin

2007-08-08 Thread Stephan Beal
On Aug 8, 6:17 pm, Sam Collett [EMAIL PROTECTED] wrote: You like developing plugins don't you? ;) :D jQuery makes it too easy to do. This particular plugin has a trivial implementation: jQuery.fn.initSpoilers = function( props ) { props = jQuery.extend({

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Aaron Heimlich
You might find this useful: http://www.quirksmode.org/dom/innerhtml.html It's a speed comparison of various (non-jQuery) ways to create a 50x50 table. On 8/8/07, Josh Bush [EMAIL PROTECTED] wrote: I had read somewhere that IE didn't support .innerHTML for the tbody element. Will I have to

[jQuery] Re: jQuery Zen Garden Interface

2007-08-08 Thread Mitchell Waite
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard D. Worth Sent: Wednesday, August 08, 2007 3:18 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery Zen Garden Interface Very nice! What a great demonstration of the power of jQuery. A couple things

[jQuery] Re: jQuery Zen Garden Interface

2007-08-08 Thread Mitchell Waite
The search input is not working yet :) Sorry. What do you mean exactly by this: maybe make the whole UI in a draggable, resizable window and you're one step further ! Do you mean put the tab interface inside a window that can be moved? Why? Thanks for the nice feedback. -Original

[jQuery] Re: [NEWS] jQuery in 15 Minutes Slideshow on Ajaxian

2007-08-08 Thread Nicolas Hoizey
Ajaxian has a post describing Simon Willison's slideshare presentation jQuery in 15 minutes. The preso gives a nice view of some of jQuery's features and is a good intro for anyone wanting to know more about jQuery. http://ajaxian.com/archives/jquery-in-15-minutes I’ve learned from

[jQuery] Re: jQuery Zen Garden Interface

2007-08-08 Thread Mitchell Waite
I will look into that issue with FF on the Mac. Its so hard to keep up with all these different browsers. Appreciate your feedback. From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erik Beeson Sent: Wednesday, August 08, 2007 12:21 AM To: jquery-en@googlegroups.com

[jQuery] Re: tooltip effect problem

2007-08-08 Thread Karl Swedberg
On Aug 8, 2007, at 11:30 AM, seedy wrote: senzacionale wrote: i have one problem with tooltip effect I want to cut url adress, becouse if it is too long then it show over the edge, over the witdh: 150px. how can i cut it? I think this a more of a problem with the browser (Im

[jQuery] Re: i need to build a tree dynamic...

2007-08-08 Thread Benjamin Sterling
cesar, are you referring to the tree view plugin? ( http://bassistance.de/jquery-plugins/jquery-plugin-treeview/) On 8/8/07, cesar c [EMAIL PROTECTED] wrote: Hi!!! I've a doubtI dont know how to implement a tree dinamic with jquery... I see de treeview api but the tree's structure is

[jQuery] Re: Announcement: Spoilers plugin

2007-08-08 Thread Stephan Beal
On Aug 8, 6:28 pm, Stephan Beal [EMAIL PROTECTED] wrote: For the click, i was thinking: clicking on the overlay will unhide the text, and mouse-out will hide it again, but that might be tedious/ @Sam Dan: i've added click-toggle and hoverIntent support via an optional init parameter:

[jQuery] Re: i need to build a tree dynamic...

2007-08-08 Thread Stephan Beal
On Aug 8, 5:10 pm, cesar c [EMAIL PROTECTED] wrote: I've a doubtI dont know how to implement a tree dinamic with jquery... I see de treeview api but the tree's structure is in the body how can i build dynamically this tree with jquery? You can build any DOM elements dynamically in jQuery

[jQuery] SITE SUBMISSION: http://www.thor.be/creations.php

2007-08-08 Thread Alexandre Plennevaux
Friends, i'm very pleased to inform you about the fresh release of Belgian contemporary dance Compagnie Thor new website: HYPERLINK http://www.thor.be/http://www.thor.be/ use of jquery for: - layouting via dimensions.js - thickbox - jscrollpane (HYPERLINK

[jQuery] Re: jQuery Zen Garden Interface

2007-08-08 Thread Alexandre Plennevaux
Do you mean put the tab interface inside a window that can be moved? Why? Exactly, Why? Just to show even bigger muscles :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mitchell Waite Sent: mercredi 8 aoűt 2007 17:54 To:

[jQuery] Re: jQuery Zen Garden Interface

2007-08-08 Thread Dan G. Switzer, II
Mitchell, - Your Sort Modes checkboxes are acting like 2 sets of radio buttons (Text -or- Icon, FirstLast -or- LastFirst -or- Taxonomic) What are you saying here? That they should be radio buttons? I don't see anything particularly bad about using checkboxes as radio buttons. Users have an

[jQuery] Re: SITE SUBMISSION: http://www.thor.be/creations.php

2007-08-08 Thread Karl Swedberg
Wow, there is some really cool UI stuff going on in that site. Fabulous. Well done, Alexandre! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 8, 2007, at 2:24 PM, Alexandre Plennevaux wrote: Friends, i'm very pleased to inform you about the

[jQuery] Re: [New Plugins] Ajax Queue and Ajax Sync

2007-08-08 Thread Ganeshji Marwaha
wow, thanks mike... that was really helpful... i will try that. John, ignore my feature request ;-) -GTG On 8/8/07, Mike Alsup [EMAIL PROTECTED] wrote: Ganeshji, I you want control over ajax error handling you can just redefine the jQuery.httpSuccess function. That fn simply returns a

[jQuery] Re: Announcement: Spoilers plugin

2007-08-08 Thread Ganeshji Marwaha
hi stephan, this is a neat plugin, i see myself using this in some cases. u mentioned that this functionality was there in imdb.com correct? where exactly in that site can i get to see this feature? -GTG On 8/8/07, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 8, 6:28 pm, Stephan Beal [EMAIL

[jQuery] Re: [Slight OT] Quick straw pole about maps

2007-08-08 Thread Glen Lipka
I never use Yahoo. I use Google for general quick maps and directions. I use http://local.live.com for the birds-eye-view. That view is ridiculously crazy. It sounds like a good idea to go for just one map source and make it more feature rich. Glen On 8/8/07, Tane Piper [EMAIL PROTECTED]

[jQuery] Re: [Slight OT] Quick straw pole about maps

2007-08-08 Thread Alex Ezell
As someone who has spent months, only moderately successfully, integrating Google Maps into a web app, I have two things to say: 1) Why is this the first I have heard of this plugin? I use jQuery throughout the site and would love to use it to handle some of my map duties. 2) I agree with Glen

[jQuery] Re: [Slight OT] Quick straw pole about maps

2007-08-08 Thread Ganeshji Marwaha
i have used google maps feature in quite a few applications now, and never once used yahoo... Regardless, i would say having one plugin per map provider sounds like a good choice. Later, you(or potentially another plugin author) can write another plugin for yahoo as well following a similar

[jQuery] Autocomplete

2007-08-08 Thread Erik Colson
Hello, I found several autocomplete plugins on the jQuery site which do allow remote queries. Since there is too much choice maybe someone can tell me which one I should use ? Thanks -- Erik

[jQuery] Re: How to check input field

2007-08-08 Thread Ganeshji Marwaha
take a look at this link http://www.quirksmode.org/js/mailcheck.html -GTG On 8/8/07, Johny [EMAIL PROTECTED] wrote: In a form there is an input field where users insert their email address. How can I check if it is the valid email or that it consists `@' . Thank you for help L.

[jQuery] Re: tabs + jqmodal = bad things in IE6

2007-08-08 Thread m3avrck
Thanks Rob! I reread the docs and got it work using the following: $(#cssmizer) // initialize CSSmizer .cssmizer(settings) // setup modal .jqm({ trigger: #cssmizer-launch, overlay:0, // because tabs are being shown in a jqModal

[jQuery] Re: ClueTIP name=Title showing in IE.

2007-08-08 Thread Karl Swedberg
On Aug 8, 2007, at 9:12 AM, Pops wrote: Found a IE vs FF behavior difference. The A links are using name=title attributes. In FF, they are not shown or atleast the delay is shown that the AJAX results appears and the title tip does not. In IE, it is always shown, so now you have two tips

[jQuery] Re: Announcement: Spoilers plugin

2007-08-08 Thread Ganeshji Marwaha
thanks... -GTG On 8/8/07, Stephan Beal [EMAIL PROTECTED] wrote: On Aug 8, 8:30 pm, Ganeshji Marwaha [EMAIL PROTECTED] wrote: this is a neat plugin, i see myself using this in some cases. :) Michael Geary and Jay Salvat deserve the real credit. When i pointed out this effect a week or two

[jQuery] Re: Autocomplete

2007-08-08 Thread Rey Bango
Hi Erik, This is the one I've been using of late: http://bassistance.de/jquery-plugins/jquery-plugin-validation/ Rey Erik Colson wrote: Hello, I found several autocomplete plugins on the jQuery site which do allow remote queries. Since there is too much choice maybe someone can tell me

  1   2   >