[jQuery] Re: Firefox 3 help

2008-06-29 Thread Alexandre Plennevaux
yup, sorry i forgot to mention it in my reply as i was focusing on your problem but i definitely second the comments, it's a very nice gallery! On Sun, Jun 29, 2008 at 8:07 AM, Sam Sherlock [EMAIL PROTECTED] wrote: me also, I had a look at the site last night and had no issues (apart from

[jQuery] Re: Login Script with SimpleModal

2008-06-29 Thread Wiz
forgot... the test page is : http://www.wizmatic.com/test.html

[jQuery] Jquery and using regex in selectors

2008-06-29 Thread Ramanathan RV
How about allowing regex in jquery selectors? For instance $(input[name=*name]) to select input name=firstname input name=lastname Typically in forms, most of the components are bundles. Like Names, Addresses, etc. One use case that I could think of is setting validators on all these fields would

[jQuery] Re: java 1.6.1_10-beta

2008-06-29 Thread Cyrill
Hi everybody, Still have the same error and could not find a way to hide this js exception. It would help me a lot if somebody could tell me how to hide this exception (confuses some user) or solve the error. thanks a lot cyrill On Jun 10, 10:58 am, Cyrill [EMAIL PROTECTED] wrote: Hi...

[jQuery] How to remove an object from an Array ?

2008-06-29 Thread Plant More Tree
Hi Guys, I got an javascript object like this : var usercontacts = { id:null, contactEmail:null, contactName:null, source:null }; and I save it into an Array with multiple of it. How can I remove one of this object from an array ? Thanks Regards, Mark -- View this message in context:

[jQuery] Re: Firefox 3 help

2008-06-29 Thread sparkpool
Really nice pics (:-) Just FYI, I'm seeing the ff3 behavior you're seeing, but with ff2.0.0.14/win. When I click a new image, it does the curtain effect with the same image that's already there, then changes to the new image quickly, I *think* without an effect. Same thing whether I navigate

[jQuery] Re: Firefox 3 help

2008-06-29 Thread sparkpool
Really nice pics (:-) Just FYI, I'm seeing the ff3 behavior you're seeing, but with ff2.0.0.14/win. When I click a new image, it does the curtain effect with the same image that's already there, then changes to the new image quickly, I *think* without an effect. Same thing whether I navigate

[jQuery] Re: add new row to table

2008-06-29 Thread ktpmm5
I tried that and now I get the js error: defaults.TABLE[0] has no properties It's almost like it's trying to add the row to a table in my main page, not my iframe (with my table?). -- View this message in context:

[jQuery] Re: Firefox 3 help

2008-06-29 Thread Joel Birch
Actually, I have run into a similar problem before. I think my solution was to fadeOut, then wait until the image was fully loaded, then fadeIn. Waiting until fully loaded meant that I created an image object, set the src property to the required image url, then checked the .complete property in

[jQuery] Re: Display CSV into Table

2008-06-29 Thread Ariel Flesler
What about: script type=text/javascript $(function(){ $('#view50').csv2table('./data/test.csv',{ sortable : false }); }); /script -- Ariel Flesler http://flesler.blogspot.com On 29 jun, 01:03, rvisco [EMAIL PROTECTED] wrote: Hi, I have a tiny problem.  Instead of using a button to

[jQuery] Re: How to remove an object from an Array ?

2008-06-29 Thread Ariel Flesler
array.splice( index_of_element, 1 ); -- Ariel Flesler http://flesler.blogspot.com/ On 29 jun, 06:28, Plant More Tree [EMAIL PROTECTED] wrote: Hi Guys,    I got an javascript object like this : var usercontacts = { id:null, contactEmail:null, contactName:null, source:null }; and I save

[jQuery] Re: Display CSV into Table

2008-06-29 Thread tato
Hi rvisco I made a sample for trial. Please watch the sample of the beginning of the following URL http://jsgt.org/lib/jquery/plugin/csv2table/v002/test.htm div id=view0/div script $(function(){ $('#view0').csv2table('./data/Book12.csv'); }); /script On 6月29日, 午後1:03, rvisco [EMAIL

[jQuery] Re: Display CSV into Table

2008-06-29 Thread tato
Hi rvisco I made a sample for trial. Please watch the sample of the beginning of the following URL http://jsgt.org/lib/jquery/plugin/csv2table/v002/test.htm div id=view0/div script $(function(){ $('#view0').csv2table('./data/Book12.csv'); }); /script On 6月29日, 午後1:03, rvisco [EMAIL

[jQuery] Re: Google Analytics Tracking with JQuery

2008-06-29 Thread Colin Guthrie
Gaudicia wrote: Hello, I just started looking into JQuery and I have a few questions. Mostly about how to make tagging my links with google analytics tracking faster. I want to be able to track my outgoing links, which I've read is possible, but I really haven't see anything about

[jQuery] Re: Display CSV into Table

2008-06-29 Thread tato
Hi rvisco I made a sample for trial. Please watch the sample of the beginning of the following URL http://jsgt.org/lib/jquery/plugin/csv2table/v002/test.htm div id=view0/div script $(function(){ $('#view0').csv2table('./data/Book12.csv'); }); /script

[jQuery] Re: Google Analytics Tracking with JQuery

2008-06-29 Thread Dan G. Switzer, II
Gaudicia, I just started looking into JQuery and I have a few questions. Mostly about how to make tagging my links with google analytics tracking faster. I want to be able to track my outgoing links, which I've read is possible, but I really haven't see anything about tracking third party

[jQuery] Re: Display CSV into Table

2008-06-29 Thread tato
I'm sorry. I have contributed a plural number by mistake.

[jQuery] jquery keydown and keyup at (window) level do not fire in IE

2008-06-29 Thread Sam
Anyone else noticing this? Here is an example code, works fine in firefox but fails in IE. $(window).keydown(function(event){ alert(event.keyCode); });

[jQuery] Re: How to remove an object from an Array ?

2008-06-29 Thread Plant More Tree
this one only work in mozila browser ! Ariel Flesler wrote: array.splice( index_of_element, 1 ); -- Ariel Flesler http://flesler.blogspot.com/ On 29 jun, 06:28, Plant More Tree [EMAIL PROTECTED] wrote: Hi Guys,    I got an javascript object like this : var usercontacts = {

[jQuery] Using tabs - how do I get tabs to load on a nested page?

2008-06-29 Thread Sam
The tabs work fine on the first page, but I need a second group of tabs on the by Season tab. The code is there, but the tabs don't generate on document ready. front page: http://www.texas-asl.com/ladder/ladder.php by Seasons tab page: http://www.texas-asl.com/ladder/seasons.php

[jQuery] Cycle and Fancybox problem

2008-06-29 Thread KiralyVlad
Hi, I've included Fancybox into the Cycle plugin. Currently, my Cycle plugin has two divs (two sets of pictures). When you click on a picture from the first slide, fancybox zooms from the top left corner of the page, instead of zooming in/out from the image clicked. Could anyone please help

[jQuery] jqModal - How to close the modal box from an iframe

2008-06-29 Thread Hypolite
Hello, I'm just discovering the wonderful world of jQuery and jqModal, but I'm already stuck on a little problem for which I did not find the answer in this mailing : I have a jqModal div which contains an iframe with a form inside. The iframe allows me to show messages (error messages and

[jQuery] Problem with post not displaying in IE - FF works

2008-06-29 Thread flycast
First of all - I'm a 1st timer on Javascript and jquery so...please give me a little grace on my poor js skills. I have the following setup that is working fine in FF. The problem is in IE with the post in the getData function. In both IE and FF I get the alert that contains the data (just to

[jQuery] Re: [Treeview] Dynamically adding nodes to the async treeview

2008-06-29 Thread SirHoundalot
Doh - so obvious! Thanks for this! On Jun 27, 1:57 pm, Jörn Zaefferer [EMAIL PROTECTED] wrote: To avoid putting it all into one unreadable line. Jörn On Fri, Jun 27, 2008 at 3:00 AM, Alexsandro_xpt [EMAIL PROTECTED] wrote: Jorn, Why you always declare a new JS var? --

[jQuery] [treeview] Cookie domain and path

2008-06-29 Thread jcruz
When setting a value for cookieId, is it possible to specify a cookie domain and path?

[jQuery] Re: Cookie domain and path

2008-06-29 Thread jcruz
This is for the Treeview 1.4 On Jun 29, 12:34 pm, jcruz [EMAIL PROTECTED] wrote: When setting a value for cookieId, is it possible to specify a cookie domain and path?

[jQuery] Re: Don't redirect on form submit

2008-06-29 Thread Sid
Bil and Chris, Thanks to both of you. Chris's code is exactly what I wanted, and Bil, the XHR memory leaks still happen. Some old stuff thrown up by Google indicates that only 2 simultaneous XHR sessions can be initiated, and the next one waits till either of the two closes. Regards On Jun 29,

[jQuery] Position a hidden DIV under a menu item

2008-06-29 Thread [EMAIL PROTECTED]
Hello, I have an existing single-row table driven menu bar that I am looking to add a drop-down menu to. Below is the code I am trying to use. I have gone through many iterations but I seem to always get the same error: $('#appMenuDropDown').style has no properties Can someone please take a

[jQuery] simple: how to dynamically set dropdown's selected menu item

2008-06-29 Thread spherop
i can't seem to find example for: simple html dropdown select id=myDD option value=hihi/option option value=hellohello/option /select jquery code needed to set *selected item* to hello based on knowing the value of hello -- View this message in context:

[jQuery] Re: Cookie domain and path

2008-06-29 Thread jcruz
Submitted a patch at http://dev.jquery.com/ticket/3101 On Jun 29, 12:40 pm, jcruz [EMAIL PROTECTED] wrote: This is for theTreeview1.4 On Jun 29, 12:34 pm, jcruz [EMAIL PROTECTED] wrote: When setting a value for cookieId, is it possible to specify a cookie domain and path?

[jQuery] Re: Array Intersection or union

2008-06-29 Thread Mike
Good point but there has to be a simple intersection/union piece of code out there that can find the intersection or union of n number of arrays. On Jun 28, 8:57 am, Karl Swedberg [EMAIL PROTECTED] wrote: Also, jQuery has a few array methods in the core: http://docs.jquery.com/Utilities

[jQuery] Ajax/jQuery.post: JSON interpretation of return value not working

2008-06-29 Thread hannes
I'm trying to get this code to work: function favorite(id, uri) { $.post(uri, function(data) { console.log(data: + data); console.log(data.tt: + data.tt); }, json ); } My console output is: POST

[jQuery] ui.mouse is null or not an object

2008-06-29 Thread AzamSharp
Hi, I am adding the following library and still getting the ui.mouse is null or not an object JavaScript error: Here are my references: script src=Scripts/jquery-1.2.6.js type=text/javascript/ script script src=Scripts/ui.sortable.js type=text/javascript/ script script

[jQuery] Re: Google Analytics Tracking with JQuery

2008-06-29 Thread Gaudicia
Hello, Thanks you for the help. I noticed that you can select links by the value of the href and I believe this will be best. I will be applying the google analytics script to over 30 websites and I really don't want to be editing each link to add a class to them or the forms since it will

[jQuery] Re: Position a hidden DIV under a menu item

2008-06-29 Thread Shaun
$('#appMenuDropDown').css( 'top', offset.top + 20 + 'px' ); $('#appMenuDropDown').css( 'left', offset.left + 'px' ); On Jun 29, 1:31 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I have an existing single-row table driven menu bar that I am looking to add a drop-down menu to. Below

[jQuery] Re: Jquery and using regex in selectors

2008-06-29 Thread chris thatcher
Actually jQuery supports a subset of of regular expression-like filters. Check out: http://docs.jquery.com/Selectors and look at the 'Attribute Filters' This would achieve the case you need with jQuery(input[name*='name']) Thatcher On Sun, Jun 29, 2008 at 1:31 AM, Ramanathan RV [EMAIL

[jQuery] Re: simple: how to dynamically set dropdown's selected menu item

2008-06-29 Thread Shaun
var known = 'hello'; $(option:contains('+known+')).attr( 'selected', 'true' ); On Jun 29, 2:44 pm, spherop [EMAIL PROTECTED] wrote: i can't seem to find example for: simple html dropdown select id=myDD option value=hihi/option option value=hellohello/option /select jquery code

[jQuery] How to fit the draggable inside the droppable?

2008-06-29 Thread AzamSharp
Hi, How can I fit the draggable inside the droppable? I know I can use fit but that is just too hard to fit in the droppable. Also, if the droppable already consists an element then I want to kill the draggable but not destroy or disable it.

[jQuery] is this bug ? bind not work

2008-06-29 Thread Adwin Wijaya
Hi ... I have table and inside contains image which class name = 'reason_img' my js script was like this script $(document).ready(function(){ .. another initialization goes here $('.reason_img').bind('click',function(e) {display_reason(this);}); });

[jQuery] Really simple images gallery

2008-06-29 Thread pek
So this is what I basically want to do and don't know where to look for: I have a series of images in an unordered list which, with CSS, they appear from left to right (using display: inline if I remember correctly). On the very left of the first image and on the very right of the last, there

[jQuery] Re: Position a hidden DIV under a menu item

2008-06-29 Thread Shaun
How about $('#appMenuDropDown').css( 'top', offset.top + 20 + 'px' ); $('#appMenuDropDown').css( 'left', offset.left + 'px' ); On Jun 29, 1:31 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I have an existing single-row table driven menu bar that I am looking to add a drop-down menu

[jQuery] Re: Array Intersection or union

2008-06-29 Thread Karl Rudd
There's quite a few hits on Google if you search for javascript array intersection and javascript array union. For instance: http://spudly.shuoink.com/2008/05/31/arrayintersection/ http://www.kirupa.com/forum/showthread.php?t=268448

[jQuery] Re: Jquery image gallery dev help

2008-06-29 Thread agus david
bump guys any help thank you David On Jun 30, 12:26 am, agus david [EMAIL PROTECTED] wrote: hi guys, i try to make jquery imagegallerytry to take advantage using animation but i had issues when i try to animate to scroll from right to left all looks good but the other way around from left

[jQuery] Corners not working in IE7

2008-06-29 Thread Glen Lipka
Im trying to get curvy corners to work, but for some reason it doesn't work in IE7. http://blue-anvil.com/jquerycurvycorners/test.html Site: http://blog.sparkt.com/ Any ideas? Im getting bleary-eyed. Thanks Glen

[jQuery] Re: Jquery image gallery dev help

2008-06-29 Thread Karl Rudd
An initial look suggests that the scroll+scale (in parallel) from left to right is working but the right to left is actually scroll then scale (serial). I hope that makes sense. Karl Rudd On Mon, Jun 30, 2008 at 12:19 PM, agus david [EMAIL PROTECTED] wrote: bump guys any help thank you

[jQuery] Re: is this bug ? bind not work

2008-06-29 Thread Hamish Campbell
Does the image exist in the DOM on page load complete? On Jun 30, 1:44 pm, Adwin Wijaya [EMAIL PROTECTED] wrote: Hi ... I have table and inside contains image which class name = 'reason_img' my js script was like this script     $(document).ready(function(){         .. another

[jQuery] Re: ui.mouse is null or not an object

2008-06-29 Thread Cloudream
ui.core.js should before other ui.xxx.js . On Jun 30, 8:51 am, AzamSharp [EMAIL PROTECTED] wrote: Hi, I am adding the following library and still getting the ui.mouse is null or not an object JavaScript error: Here are my references:     script src=Scripts/jquery-1.2.6.js

[jQuery] Re: jqModal r12 release

2008-06-29 Thread Brice Burgess
Alexandre, The neat thing about jqModal is it's flexibility. Really anything is possible... but may take some extra code (CSS, onShow Callbacks, etc.) to achieve the desired effect. It is a good idea to extend jqModal... say to mimic the (very good looking) effects and functionality of

[jQuery] Re: Firefox 3 help

2008-06-29 Thread daveJay
Thanks all for the comments =) I'm glad you like the pictures. AND, I'm thrilled your commenting more on the pictures than you are the design of the gallery, even though they have a symbiotic relationship. I'm glad that the problem is not affecting everyone, that's somewhat of a relief, but I'm

[jQuery] Re: Login Script with SimpleModal

2008-06-29 Thread Eric Martin
Based on a brief look, I don't see where you are binding the submit to do any of the validation. On Jun 28, 7:42 pm, Wiz [EMAIL PROTECTED] wrote: forgot... the test page is :http://www.wizmatic.com/test.html