[jQuery] Re: Index of Parent TD

2009-01-22 Thread Aarron
Worked a charm! One to remember me thinks. Cheers all, A On Jan 22, 7:49 pm, Mike Alsup wrote: > > I have a link which sits inside atdwithin a tr within a table.  What > > I would like to do is find out whichtd(which column) in the table > > this link is within - I need to find the columnindex

[jQuery] Re: How to handle responses from PHP with $.ajax()

2009-01-22 Thread Agile Consulting
Its a nice group

[jQuery] Re: jquery 1.3 n.queue is not a function?

2009-01-22 Thread yellow1912
Just an update: Today I updated to 1.3.1, update validation,form, and livequery plugins to the newest as well. Now the validation works find, which is totally great. However, I still have problem with this error: jQuery.queue is not a function There are many ways to re-produce this error, for ex

[jQuery] system div wants to chat

2009-01-22 Thread system div
--- system div wants to stay in better touch using some of Google's coolest new products. If you already have Gmail or Google Talk, visit: http://mail.google.com/mail/b-cc2d1cd851-2e8029a520-4143a4170ddaaae3 You'll need to click

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren
Thanks to John and the jQuery team, the problem was identified and found. It turns out I had a bad FireFox profile. For some reason, still unknown to everyone, if you see tremendous speed problems (in and out of firebug), try creating a new FireFox profile (firefox.exe -p), and use that one inst

[jQuery] Re: Is A Child Of?

2009-01-22 Thread Karl Swedberg
Do you have to start with two jQuery objects? It would be a lot easier if you could start with two simple selectors. For example, given div.outer and span.inner, to see if span.inner is a descendant of div.outer, you could go from the other direction: $('div.outer:has(span.inner)').length

[jQuery] $.live and performance

2009-01-22 Thread Ami
Hello. Sorry about my grammar, English isn't my tang. I want to understand how the "$(selector).live()" works. I have a DOM with a lot of elements. So if I write: $('span[attr=value]').live('click').. When jQuery search for this SPAN? jQuery search immediately for all span[attr=value], or ev

[jQuery] Re: $.ajaxSubmit ( ERROR :

2009-01-22 Thread Ami
Thank you. On Jan 23, 5:53 am, Mike Alsup wrote: > > Do you think that there is a way to get a return code, when uploading > > file? > > > > > > > > > > $("form").ajaxSubmit ( {error: function () {alert('error')}  ); > > > Now because the upload is by using invisible iframe and not by XHR, I

[jQuery] JSON with .Net

2009-01-22 Thread JQueryProgrammer
I am trying to use JSON with jquery and .Net. I am using json2.js for JavaScript and Newtonsoft.JSON for .Net serialization. Here goes my code: JavaScript --- $.ajax({ url: "http://localhost/JSONSample/default.aspx";,

[jQuery] Re: Calling Joel Birch! - jQuery menu widget Issue

2009-01-22 Thread Joel Birch
I don't know off the top of my head. Do you have a link you could show me please? Joel.

[jQuery] Re: $.ajaxSubmit ( ERROR :

2009-01-22 Thread Mike Alsup
> Do you think that there is a way to get a return code, when uploading > file? > > > > > > $("form").ajaxSubmit ( {error: function () {alert('error')}  ); > > Now because the upload is by using invisible iframe and not by XHR, I > think that I cannot get the error function to work. > > Am I ri

[jQuery] Validation Plugin: additional-methods.js

2009-01-22 Thread Steve Blades
Thanks again to Jorn for a fantastic plugin. One thing I noticed, with the additional-methods.js file that is included with the download, is a small error with the messages for the maxWords, minWords, and rangeWords methods. They are missing $.format(): jQuery.validator.addMethod("maxWords", functi

[jQuery] Image preview tooltip

2009-01-22 Thread kneidels
Hey folks i am currently using this nice image-preview/tooltip guy: http://cssglobe.com/lab/tooltip/03/ my problem, is that when the tooltip shows up on the side of the window, it overflows outside, creating horizontal scrolling (ew!). is there an equivalent somewhere that dynamically switched t

[jQuery] superfish

2009-01-22 Thread K
Hello. First of all, superfish is a great plugin and I am currently using it on a website I am developing. I have implemented the nav-bar style and it looks/works great for the most part however I do have one problem that I can't seem to get around. The secondary menu (the lower of the 2 navbars)

[jQuery] Re: How do I communicate with other windows with jquery

2009-01-22 Thread Karl Rudd
If the tab was a window opened via "window.open" then you should be able to access it like any other window opened like that. For instance (untested): var myWindow = window.open('blah.html'); $('body', myWindow.document).addClass('something'); Note you have to put the "context" (myWindow.documen

[jQuery] How do I communicate with other windows with jquery

2009-01-22 Thread jack
On firefox mutiple tabs, how do I manipulate the other tabbed window, such as set focus or change css on a specific element?

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
Ah if i change the accordion: .ui-accordion-content { padding: 1em 2.2em; } to .ui-accordion-content { padding: 0px; } It has the same issue it iwll jump, does anybody know why?

[jQuery] $.ajaxSubmit ( ERROR :

2009-01-22 Thread Ami
Hello. Do you think that there is a way to get a return code, when uploading file? $("form").ajaxSubmit ( {error: function () {alert('error')} ); Now because the upload is by using invisible iframe and not by XHR, I think that I cannot get the error function to work. Am I right? I am us

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
Ah ok cool didnt see that one... only umm i would still like to know how to solve this on my own :p On Jan 22, 5:08 pm, Jörn Zaefferer wrote: > Actually you can use pretty much any element you want. More details > here:http://docs.jquery.com/UI/Accordion/accordion > > Jörn > > On Thu, Jan 22, 20

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
Also the accordion has a issue where as you move fast over the items, before the animation is finished it does not catch the mouseenter event, so you have to go over it once again to open it.

[jQuery] Re: PHP $_SESSION data empty in a jQuery AJAX call

2009-01-22 Thread donb
Is there an inconsistent hostname, like www.example.com to open the page then only using example.com n the ajax part? Not sure if that would even have an effect, just something that occured to me. On Jan 22, 6:22 pm, twilsoncom wrote: > Of course, PHP should be reading the Session ID from a coo

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
Ah ok cool didnt see that one... only umm i would still like to know how to solve this on my own :p On Jan 22, 5:08 pm, Jörn Zaefferer wrote: > Actually you can use pretty much any element you want. More details > here:http://docs.jquery.com/UI/Accordion/accordion > > Jörn > > On Thu, Jan 22, 20

[jQuery] Re: Can't append html to textare after jquery.form ajax submit

2009-01-22 Thread Ami
This is the code: function bindButtons () { $('#bold,#italic,#underline').unbind().click(function() { $('#body').append($(this).val()); } $(document).ready(function() { $('#journalForm').ajaxForm({ dataType: 'json',

[jQuery] Re: Can't append html to textare after jquery.form ajax submit

2009-01-22 Thread Ami
You can try this. 1. Create this function: function bindButtons () { $('#bold,#italic,#underline').unbind().click(function() { $('#body').append($(this).val()); } 2. change the ready function: $(document).ready(function() { $('#journalForm').ajaxF

[jQuery] Having problems with 1.3 on Opera userjs

2009-01-22 Thread helianthus
I have been writing a user-script(userjs) with jQuery recently, the way I integrate jQuery is to copy the minified code into the user- script. It had been working fine until I updated jQuery to 1.3, while on other browsers(FF3, Chrome, etc) they still work with no problems, on Opera 9.63 the page

[jQuery] Populate Form within Thickbox

2009-01-22 Thread Jon Hadden
On the parent page I have a list of items that were submitted to the DB from a text field form within an inline Thickbox. On each one of these items, I have an "Edit" link, which will also open the same inline thickbox form, however, I am unclear how to populate the form with that items saved info

[jQuery] Re: How to get the value of List and concatenate with JQUERY

2009-01-22 Thread Ami
My javascript syntax is better than my English syntax, So i hope that you can understand it $(document.body).prepend("abcdefghi"); var result=''; $.each ( $("#theUl").children(), function () {result+=($(this).attr('id'))} ); alert(result); Good luck, Ami On Jan 23, 12:38 am, nk wrote: > Hi Al

[jQuery] change certain elements in result set based on position

2009-01-22 Thread devilmike
Hello all, I can't quite get my head around how to accomplish this and any guidance would be greatly appreciated. Say I have some random number of 's on the page, like 20. I'd like to grab the first 4 and make them red, then grab the next 4 and make them blue, then grab the next 4 and do somethi

[jQuery] Re: Need access to index within loop

2009-01-22 Thread brian
Oh--I missed that entirely. Yes, what Karl said! On Thu, Jan 22, 2009 at 5:43 PM, Karl Rudd wrote: > > You don't have to "select" the LI again. Within the "each" function > the "this" variable refers to the LI DOM node. So you can write: > > $(document).ready(function(){ > $('li').each(function

[jQuery] Extension/modification/overriding jQuery plugins

2009-01-22 Thread Bill
Hi all, I'm developing functionality for an application using jQuery plugins. Our organization has a compelling need to allow for these plugins to be extended without touching the original code. I.e., let's say I have a plugin that looks like this: $.fn.somePlugin = function(callerSettings) {

[jQuery] Hide specific characters

2009-01-22 Thread Wacko Jacko
Hi There, I am using a CMS product that does not enable me to hide cart totals from their cart summary. I need to do this for this particular client. Here a snippet of code for the rendered page: 2 item(s), Total: $0.00 View Cart I would like to hide (or remove) from the exact following sectio

[jQuery] Re: $('.someclass[initialized!=1]') fails in 1.3; works in 1.2 (if elements don't have initialized attr)

2009-01-22 Thread John Resig
This was fixed in 1.3.1. --John On Thu, Jan 22, 2009 at 4:42 PM, Soulcatcher wrote: > > Say i have several elements with class='someclass' and they DON'T have > attribute 'initialized' initially. > > When i do $('.someclass[initialized!=1]') in 1.2.6, i get the list of > all those elements. >

[jQuery] $('.someclass[initialized!=1]') fails in 1.3; works in 1.2 (if elements don't have initialized attr)

2009-01-22 Thread Soulcatcher
Say i have several elements with class='someclass' and they DON'T have attribute 'initialized' initially. When i do $('.someclass[initialized!=1]') in 1.2.6, i get the list of all those elements. In 1.3, i get an empty list. I traced it to line 1986 in jquery 1.3 (Revision 6104) that will return

[jQuery] superfish help

2009-01-22 Thread Skye
Hi, I'm trying to use superfish in my joomla(1.13) site to create some css dropdowns and I'm having a few problems. I've tried most of the joomla mods with extended menu to try and get the drop downs working properly and can never get ie6 working properly. If anyone could check out my source it w

[jQuery] How to get the value of List and concatenate with JQUERY

2009-01-22 Thread nk
Hi All, I have a list which is being populated dynamically from the database.I am trying to capture the value of the list items (using click function) and pass it to a query to get the result set.The value attribute has been deprecated for LI.Please tell me a way to capture the LI value. One T

[jQuery] Re: PHP $_SESSION data empty in a jQuery AJAX call

2009-01-22 Thread twilsoncom
Of course, PHP should be reading the Session ID from a cookie sent along with the headers, so you might check to make sure that the domain parameter for the cookie is originally being set in such a way that the script you're calling through AJAX has access to read the cookie. I've had similar prob

[jQuery] [validate] Numbers Validator Error

2009-01-22 Thread Andy
I am having a problem with getting the numbers validator to work correctly. I keep getting the following from firebug: exception occured when checking element time_entry_hours, check the 'numbers' method $.validator.methods[method] is undefined [Break on this error] (function($){$.extend($.fn,{va

[jQuery] UI/Accordion - Possible to deep-link?

2009-01-22 Thread bcbounders
Hi, This is probably a stupid question, but I've been scouring around trying to find an answer to no avail. Is is possible to have a hyperlink that links to the accordion on another page in such a way that it opens a specific accordion element? For instance, I have a page where I want to includ

[jQuery] Can't append html to textare after jquery.form ajax submit

2009-01-22 Thread drewtown
I am writing a user input form and I have buttons set up that add [b] [i][u] etc tags to the form like BBCode. The user can then submit it (uses the jquery.form plugin) and everything works fine. If the user then tries to type more and use the buttons again the buttons don't append to the textar

[jQuery] Re: why does $('.myDiv', top.frames[0]).hide() not work?

2009-01-22 Thread jquertil
I love answering my own ?'s ;P $('.myDiv', top.frames[0] .DOCUMENT ).hide(); works - forgot to add the document reference.

[jQuery] Html navigation menus

2009-01-22 Thread Spencer
I was wondering if anyone has done the following with jQuery or if anyone knows of a plugin that does the same. If you refer to the target.com home page and mouseover one of the main nav buttons, like "women". You'll see that a large html menu comes down. What I need to do is similar, but with a

[jQuery] Re: problem with jqmodal and ui datepicker

2009-01-22 Thread Ca-Phun Ung
Hi, try increasing the z-index value of datepicker in your css: If you're using jQuery UI 1.6rc4 onwards look for .ui-datepicker otherwise look for #ui-datepicker-div On Thu, Jan 22, 2009 at 2:33 PM, Netzai wrote: > > > Hello. > Some body can help me? > I heave a problem with datepicker inside

[jQuery] why does $('.myDiv', top.frames[0]).hide() not work?

2009-01-22 Thread jquertil
I'm totally not getting it... but you might, I hope :) I appended an iframe: $('body').append('...etc'); The iframe source has jquery in the header and it works. now I want to do something in that iframe, like hide a div. I want to do this from the top.frame... $('.myDiv', top.frames[0]).hid

[jQuery] Re: Toggle child elements

2009-01-22 Thread donb
The example doesn't 'slide' it has a fixed top position. The height of the container increases from zero to some value, gradually revealing the contents - much as if you are opening a sliding door. On Jan 22, 6:05 pm, Wacko Jacko wrote: > Anyone? Am a barking up the wrong tree? > > On Jan 12, 1

[jQuery] Re: datepicker not showing up

2009-01-22 Thread Ca-Phun Ung
jQuery UI 1.5.x is not be supported with jQuery 1.3. Also it looks like you're using ThemeRoller v2 with jQuery UI 1.5.3 - Use the link below the ThemeRoller generator at http://ui.jquery.com/themerollerto download themes for jQuery UI 1.5.x On Wed, Jan 21, 2009 at 3:53 AM, Ryan W. wrote: > > I

[jQuery] Re: datepicker css

2009-01-22 Thread Ca-Phun Ung
Hi, Yes, the theme generated by Themeroller does give you all component CSS files but in your case you only need the following 3: ui.core.css ui.theme.css ui.datepicker.css Note: the order of the css files is important Thanks. On Thu, Jan 22, 2009 at 10:32 PM, Dan B. wrote: > > update: if I

[jQuery] Re: select the parent recursively

2009-01-22 Thread donb
Is there a reason for 'var input' other than possibly readability? Just wondering if there is some functional significance. On Jan 22, 6:06 am, Stephan Veigl wrote: > try: > var input = $("input"); > var parent = input.parents("span[xmlns]"); > > by(e) > Stephan

[jQuery] Re: New 1.3 feature, native event delegation??

2009-01-22 Thread Karl Rudd
Event delegation and adding event handlers to new elements are actually two different things. The event delegation works without any changes. So if you put a "click" event on a table and click a "td" then the table's click event will be triggered too. The automatic event handler adding uses the

[jQuery] Re: $.ajax timeout and trouble with Microsoft IIS 6

2009-01-22 Thread Stefano Corallo
mmm i don't know ... i'll give it a try and let you know...any other idea? It seems that the connection is not closed but the server keep it alive. If i'm not wrong when a timeout occurs the client close the connection right? In the apache way it work and i can see that (thanks firebug), but with

[jQuery] New 1.3 feature, native event delegation??

2009-01-22 Thread Sam H
John Resig said of 1.3: "I only posted last week about how event delegation can help you to optimize your code and it looks like jQuery will do it for you now, which means that any event handlers you add to a group of elements will automatically be added to matching elements when you create them.

[jQuery] Re: select the parent recursively

2009-01-22 Thread Gill Bates
great, it works. Big thx, dude. On 22 Jan., 12:06, Stephan Veigl wrote: > try: > var input = $("input"); > var parent = input.parents("span[xmlns]"); > > by(e) > Stephan

[jQuery] Re: Toggle child elements

2009-01-22 Thread Wacko Jacko
Anyone? Am a barking up the wrong tree? On Jan 12, 10:48 am, Wacko Jacko wrote: > Hi donb, > > It sounds like you know much more than I do. I am still quite new to > jQuery. Can you point me in the right direction to have these elements > slide in (down)? > > Thanks in advance for your help. > >

[jQuery] Re: colon in xml tag on webkit - cannot select

2009-01-22 Thread burrowing owl
Okay, I have a fix for this, though it doesn't address the underlying problem of parsing tags that contain colons. function mungeTag( tag, munge ) { // in case browser does not grok tags with colons reM = /.*(\:)(.*)/; if ( munge ){ tag = tag.replace( reM,

[jQuery] Re: Need access to index within loop

2009-01-22 Thread Karl Rudd
You don't have to "select" the LI again. Within the "each" function the "this" variable refers to the LI DOM node. So you can write: $(document).ready(function(){ $('li').each(function(i) { alert(i); $(this).fadeIn('slow'); }); }); Karl Rudd On Thu, Jan 22, 2009 at 9:41 PM, elduderi

[jQuery] Re: datepicker css

2009-01-22 Thread Dan B.
update: if I use the 300 kilobyte js generated by the theme roller that basically includes all UI elements the styling is appearing fine. So I just need a themed download for the datepicker, not every UI component ever made. DAn On Jan 22, 3:12 pm, "Dan B." wrote: > For some reason I am dying

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren
Thank you - it would good to know if I'm the only one experiencing this. My app is nearly all HTML injected, and it would be interesting to know if other highly DHTML apps are experiencing the same issue. -Loren On Jan 22, 12:54 pm, Alexsandro_xpt wrote: > Interesting your test > I will te

[jQuery] datepicker css

2009-01-22 Thread Dan B.
For some reason I am dying trying to get a datepicker setup with some decent CSS. Functionally, my datepicker is fine...it's just lacking the presentation the demonstrations always seem to have. I use the theme roller to download any of the gallery ones and then include the ui.datepicker.css in

[jQuery] Re: bug in id selector?

2009-01-22 Thread Michael Geary
Backslash is the escape character for a JavaScript string, e.g. alert( 'a\'b' === "a'b" ); // true So when you use \. you're merely escaping the "." in the string - in other words the \ does nothing in this case. When you use \\ then the first \ escapes the second one and you get the \ in t

[jQuery] Re: .append with a var

2009-01-22 Thread Nikola
Thanks, that's one of the expressions I tried out to no avail. I am trying to append an error message to a div much like how the form plug- in allows you to set a target container for server output. So, this entire function is within an if statement and is already being echoed. On Jan 22, 4:12

[jQuery] Re: Popup going under flash object

2009-01-22 Thread ptmurphy
Kean - that was it! I would have NEVER found that on my own. I never dreamed to look at a parameter in the flash file, as I am just calling a .swf file and it takes care of everything for me. However, I did find that I could pass it a parameter to set the wMode. I pulled my hair out for two days

[jQuery] Re: Unable To Traverse From an XML Ajax Response

2009-01-22 Thread bittermonkey
yep that's it. On Jan 22, 4:23 pm, jay wrote: > Perhaps "table" is case-sensitive? > > On Jan 22, 3:53 pm, bittermonkey wrote: > > > Hi, > > > I need to know where I am doing wrong.  The ALERT message in my jquery > > code doesn't seem to get hit when I put a breakpoint in firebug.  The > > pla

[jQuery] Re: redmond theme accordion IE6 bug

2009-01-22 Thread Dan Vega
That did it, thanks so much! On Jan 22, 1:43 pm, Jörn Zaefferer wrote: > This has been fixed in the repository. You can get the latest > accordion css file > here:http://jquery-ui.googlecode.com/svn/trunk/themes/base/ui.accordion.css > The changset is here:http://ui.jquery.com/bugs/changeset/17

[jQuery] Re: Is there a problem with Child selectors in Safari with 1.3?

2009-01-22 Thread andrew
Yeah that's what I ended up doing, just creating a unique id for the elements and referring to them that way. I also only have the one occurrence of those id's within each page, it was just easier within the js to put a wrapper on it so I knew what context I was in within the page. I was more ju

[jQuery] Re: Unable To Traverse From an XML Ajax Response

2009-01-22 Thread jay
Perhaps "table" is case-sensitive? On Jan 22, 3:53 pm, bittermonkey wrote: > Hi, > > I need to know where I am doing wrong.  The ALERT message in my jquery > code doesn't seem to get hit when I put a breakpoint in firebug.  The > plan is to loop through all the Elements in the XML response > an

[jQuery] Re: Is A Child Of?

2009-01-22 Thread Ricardo Tomasi
I've coded a plugin for that: http://ff6600.org/j/jquery.childOf.js You can also do this, but it's much slower: var a = $(a), b = $(b); b.parents().filter(function(){ return this == a[0]; }).length cheers, - ricardo On Jan 22, 7:25 am, "James Hughes" wrote: > Hi, > > This is probably a re

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Alexsandro_xpt
Interesting your test I will test my apps On 22 jan, 08:43, Loren wrote: > Hello, > > I have an application that does lots of HTML injection, animation, and > manipulation, and I'm a long time user and fan of jQuery. > > Recently I downloaded 1.3.1, and my app became really sluggish. > Norm

[jQuery] Re: Display GIF animation during jQuery loop

2009-01-22 Thread Ricardo Tomasi
Creative interpretation of try/catch/finally! That's a construct meant to catch errors, all it does in your code is catching any errors thrown by each() and then running the finally block. I guess your function in each() involves animations, right? Without seeing the rest of the code it's hard to

[jQuery] Re: Download a file from server...

2009-01-22 Thread AlexDeLarge
Thank you guys for your answers! I really do appreciate them. As soon as I get back to my problem I'll try some of these suggestions. Once again, thank you.

[jQuery] Unable To Traverse From an XML Ajax Response

2009-01-22 Thread bittermonkey
Hi, I need to know where I am doing wrong. The ALERT message in my jquery code doesn't seem to get hit when I put a breakpoint in firebug. The plan is to loop through all the Elements in the XML response and create a 3-column HTML table from its child nodes. Thanks in advance. This is my j

[jQuery] Re: bug in id selector?

2009-01-22 Thread Ricardo Tomasi
You have to use double slashes to escape it, that's right. It also works in CSS: $('#test2\\.3').hide() #test2\.3 { display:none } On Jan 22, 5:36 pm, spinn...@vip.hr wrote: > I believe that it will function as intended if you escape the dot, > like so: > $("#test2\.3") > > although I've tried n

[jQuery] Re: Is there a problem with Child selectors in Safari with 1.3?

2009-01-22 Thread Jeffrey Kretz
One question, if you're referring to your elements by id, can't you just do: $('#elmId'); Directly? Rather than by a parent/child relationship? If the problem is that you have multiple elements on the same page with the same id (which is NOT recommended HTML), then I suggest using a class base

[jQuery] Re: Problem with Magnify jQuery plugin in IE7

2009-01-22 Thread Josh Nathanson
Oh, I see another problem. You have "stagePlacement" values in your stageCss option. StageCss can only have valid CSS attributes, so this will probably break IE. StagePlacement is a separate option, so your options should look like this: $("#d02").magnify({ lensWidth: 27,

[jQuery] Is there a problem with Child selectors in Safari with 1.3?

2009-01-22 Thread andrew
Hi I've got an application that has a pop up div which has controls that submit an ajax post before which I'm getting some hidden variables from within the popup div, I'm using 'live' with the popup div controls. I'm referencing the elements by their parent id then their specific Id, eg $("#cont

[jQuery] Re: Problem with Magnify jQuery plugin in IE7

2009-01-22 Thread Josh Nathanson
Hi Peter, Josh here, the author of the plugin. Not sure why it's not working for you, but one thing I would recommend: - use a class attribute on all your links that you want to bind to the plugin - that way you can just call the plugin once and all your links will be bound: etc. Then one bi

[jQuery] Re: Split data grid

2009-01-22 Thread jay
I think you can just do something like this to freeze the table header element: $("table th").css("position","relative"); Not sure how well it works across browsers. I had issues with this on IE7 when I later tried to resize the overflow:scroll div. On Jan 22, 11:15 am, Mandrake wrote: > I've

[jQuery] Re: Popup going under flash object

2009-01-22 Thread ptmurphy
Thanks for the replies so far. Let me give these ideas a try this evening and I will let you know. On Jan 22, 1:19 pm, amuhlou wrote: > In Firefox 2 Mac the wmode=transparent parameter causes a bug.  If > flash with wmode=transparent is playing, some things that go over top > of the flash area

[jQuery] Re: Jquery tree menu Ul Li Ul

2009-01-22 Thread jay
You can store information in a hidden input field (or fields) across postbacks (stores text only). Reference this field when the document gets loaded to either render your menu the way it needs to be rendered, or to adjust its state to reflect the state that was saved. This is how ASP.NET manages

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Rey Bango
Thanks for helping Loren. We're equally committed to you, a member of the jQuery community. Please send John the link to the temp site ASAP and we'll figure out what's going on. Rey Loren West wrote: Hi John, Thank you for the reply. Firebug is set up for auto updates - am running ve

[jQuery] Problem with Magnify jQuery plugin in IE7

2009-01-22 Thread PIT
Hello, I have problem to show the big version of the image in IE7, in other browsers working good. My website where i use Your plugin is: http://www.dobrestudium.pl/kurs_paznokci.html.php In attachement i sending screen of place at site wher i use Magnify. I apply Magnify at one page to 14 images

[jQuery] Re: $.ajax timeout and trouble with Microsoft IIS 6

2009-01-22 Thread jay
Perhaps the cache:false option is necessary? It adds a timestamp to the end of the querystring. The browser may be caching the request and therefore not showing potential errors. But then that wouldn't explain the descrepency between apache and iis. On Jan 22, 11:55 am, Stefano Corallo wrote:

[jQuery] Re: Index of Parent TD

2009-01-22 Thread jay
Here's an example using the index() function: 0.. 1.. 2.. 3.. 4.. test = $("td.test"); alert( $("tr td").index( test ) ) test = $("td a#linkID").parent(); alert( $("tr td").index( test ) ) On Jan 22, 10:58 am, Aarron wrote: > Hi there, > > I have a link which sits inside a td within

[jQuery] New tags in Opera

2009-01-22 Thread Greg Glockner
Since I just upgraded to jQuery 1.3.1, I just discovered the following: in Opera 9.63, when you add new html via jQuery, Opera adds the new tags in capitals. For instance, if you have: $("div").html(""); Then in Opera, this will be added as . I just discovered that jQuery 1.3.x is now case sens

[jQuery] Re: Index of Parent TD

2009-01-22 Thread Mike Alsup
> I have a link which sits inside a td within a tr within a table.  What > I would like to do is find out which td (which column) in the table > this link is within - I need to find the column index. > > Once I have this I can then remove the column from the table. > > Any ideas on how to do this?

[jQuery] Re: 1.3.1 is over 10x slower than 1.2.6

2009-01-22 Thread Loren West
Hi John, Thank you for the reply. Firebug is set up for auto updates - am running version 1.3.0 of firebug. We're a startup building a consumer app, and our product isn't publicly available. Our investor wouldn't want us to put our app on a public server at this time. I know you've put a lot o

[jQuery] Re: Book-like UI for jQuery?

2009-01-22 Thread Andy Matthews
Something like this might work for you: http://www.sitepoint.com/examples/jquery/animate4.php andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Richard D. Worth Sent: Thursday, January 22, 2009 12:38 PM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: bug in id selector?

2009-01-22 Thread spinnach
I believe that it will function as intended if you escape the dot, like so: $("#test2\.3") although I've tried now in Firebug and it seems you have to escape the slash too, like so (don't know why, is it because of Firebug, or?): $("#test2\\.3") Cheers, Dennis. On Jan 22, 5:21 pm, "finn.herp...

[jQuery] Re: Popup going under flash object

2009-01-22 Thread amuhlou
In Firefox 2 Mac the wmode=transparent parameter causes a bug. If flash with wmode=transparent is playing, some things that go over top of the flash area will actually pause or stop the movie. It's fixed in FF3 Mac so not a whole lot you can do for those still on v2, but at least the amount of pe

[jQuery] Re: jQuery.support & IE6 or later

2009-01-22 Thread Eric Martin
The question is - how to use the new $.support code to achieve the same result. I submitted a patch that seems to work. It needs a review and some testing: http://dev.jquery.com/ticket/3960 On Jan 21, 3:43 am, "Mauricio \(Maujor\) Samy Silva" wrote: > It will be maintained ! > > Fromhttp://docs

[jQuery] Re: Add Checkboxes in a table.

2009-01-22 Thread Kean
Let me guess, you wanted to add a new row and it is almost identical to the row before it. This will probably work. $row = $('table tr:last-child').clone(); $row.appendTo('table'); On Jan 22, 7:42 am, Andy wrote: > I need to be able to dynamically add a new rows to a table and add > elements

[jQuery] Re: Popup going under flash object

2009-01-22 Thread Kean
Problem might be with flash. add On Jan 22, 7:36 am, ptmurphy wrote: > I have a web page I have been working on and everything looks good in > IE.  However, in Firefox I am having a problem with the datepicker > popup window going under a flash object that is below the input field > on the pa

[jQuery] Re: redmond theme accordion IE6 bug

2009-01-22 Thread Jörn Zaefferer
This has been fixed in the repository. You can get the latest accordion css file here: http://jquery-ui.googlecode.com/svn/trunk/themes/base/ui.accordion.css The changset is here: http://ui.jquery.com/bugs/changeset/1755 Jörn On Thu, Jan 22, 2009 at 7:24 PM, Dan Vega wrote: > > I am using the a

[jQuery] Re: Book-like UI for jQuery?

2009-01-22 Thread Richard D. Worth
This isn't exactly what you describe, but gets you maybe half-way: http://www.webresourcesdepot.com/attractive-jquery-page-curl-plugin/ - Richard On Thu, Jan 22, 2009 at 12:45 PM, ChimericDream wrote: > > I've seen a number of sites using a book-like navigation for catalogs > and such. Essent

[jQuery] Re: Location Persistence... Almost

2009-01-22 Thread betweenbrain
Hi Jed, Are you using cookies (I seem to remember example 3 or 4) ? Also, I believe treeview uses as the parent element. That may clue you in the right direction. It would be helpful if you could post your code or a website with this example. Best, Matt On Jan 21, 6:42 pm, Jed wrote: > I we

[jQuery] redmond theme accordion IE6 bug

2009-01-22 Thread Dan Vega
I am using the accordion and everything is working great in FF3/IE7. In IE 6 the images used for the headers are about 50 pixels below where the accordion is. Does anyone know why this would be happening?

[jQuery] Re: Popup going under flash object

2009-01-22 Thread amuhlou
Is the flash div given a position, either relative or absolute? If not, try giving it position relative along with the low z-index. Also, do you have a test page somewhere? On Jan 22, 10:36 am, ptmurphy wrote: > I have a web page I have been working on and everything looks good in > IE.  Howev

[jQuery] Re: select next n "somethings"

2009-01-22 Thread Joe
This: var preBefore = $('p:eq(3)').prev('pre').text(); Only grabs the text of the preceding text contained within the tag. If you need all the tags prior, then use prevAll() http://docs.jquery.com/Traversing/prevAll Joe http://www.subprint.com On Jan 19, 5:03 pm, JLundell wrote: > Thanks

[jQuery] Split data grid

2009-01-22 Thread Mandrake
I've been using flexigrid and tablesorter for my data grid needs. However, i need a split datagrid function that these two do not have. You can check out what I mean by following this URL. http://dhtmlx.com/docs/products/dhtmlxGrid/samples/frozen_columns/pro_grid_split.html# Basically I just ne

[jQuery] problem with jqmodal and ui datepicker

2009-01-22 Thread Netzai
Hello. Some body can help me? I heave a problem with datepicker inside a modal window with this plugins (jqModal and ui datepicker). when datepicker show this appear in a back layer. How can i do for fixit? My javascript code: var x = $("document") x.ready(function(){ $("#wmContent").jqm()

[jQuery] Index of Parent TD

2009-01-22 Thread Aarron
Hi there, I have a link which sits inside a td within a tr within a table. What I would like to do is find out which td (which column) in the table this link is within - I need to find the column index. Once I have this I can then remove the column from the table. Any ideas on how to do this?

[jQuery] Programatically enabling ''submit' button in ASP.NET

2009-01-22 Thread yaip
I have the following aspx page <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> http://www.w3.org/1999/xhtml";> $(document).ready(function() { $(".checkedfield").blur(function() { var allFilled = true;

  1   2   >