[jQuery] Re: IE6 - "Operation Aborted" - Any Ideas?

2007-10-07 Thread G[N]Urpreet Singh
ed newer > versions), document.ready defaults to the window.onload event if no > other event triggers it sooner. > > I haven't worked on any projects where this would have been an issue > lately. My solution a bad fix that I don't recommend, but I couldn't > fi

[jQuery] IE6 - "Operation Aborted" - Any Ideas?

2007-10-03 Thread G[N]Urpreet Singh
Hi, A strange thing is happening on a project that I am working on. The page has some JQuery code like a slide down form, an accordion (which I have coded by hand) and some other stuff. Once every few times the page is loaded in IE6, it just fails. It says "Operation Aborted" and fails. Could anyo

[jQuery] Re: jQueryCamp '07 (Boston)

2007-09-09 Thread G[N]Urpreet Singh
Why dont u invite YUI theatre to cover the conference and post the videos. One of your talks is already up there... On 9/8/07, John Resig <[EMAIL PROTECTED]> wrote: > > > Hard to say - unless we get some video equipment, it's rather unclear. > > --John > > On 9/7/07, YoctoGram <[EMAIL PROTECTED]>

[jQuery] docs.jquery.com not accessible

2007-09-01 Thread G[N]Urpreet Singh
Hi, http://docs.jquery.com is not accessible. I am in India. It's like the lifeline is down :( g -- Gurpreet Singh

[jQuery] Re: Resending> Interface.js Exception: Access to Restricted URI denied

2007-08-20 Thread G[N]Urpreet Singh
is a > restriction in place in all browsers.) > > --John > > On 8/19/07, G[N]Urpreet Singh <[EMAIL PROTECTED]> wrote: > > Hi, > > Was trying to make a horizontal accordion with nice ease-in effects etc. > I > > first made the widget separately in an HTML f

[jQuery] Resending> Interface.js Exception: Access to Restricted URI denied

2007-08-19 Thread G[N]Urpreet Singh
Hi, Was trying to make a horizontal accordion with nice ease-in effects etc. I first made the widget separately in an HTML file (which worked fine) and then tried to embed it in my main HTML file. I got a funny exception. Error: uncaught exception: [Exception... "Access to restricted URI denied" c

[jQuery] Interface.js Exception: Access to Restricted URI denied

2007-08-17 Thread G[N]Urpreet Singh
Hi, Was trying to make a horizontal accordion with nice ease-in effects etc. I first made the widget separately in an HTML file (which worked fine) and then tried to embed it in my main HTML file. I got a funny exception. Error: uncaught exception: [Exception... "Access to restricted URI denied" c

[jQuery] Figuring Type of Selected Element

2007-07-24 Thread G[N]Urpreet Singh
Hi, I am running an each loop on a group of child elements and then doing something to them. Only, I want to treat tables differently. How can I find out that what type the selected element is? Type as in, is it a table or a div or a span... Thanks, Gurpreet

[jQuery] Re: Moving the COLUMNS of a table around

2007-07-16 Thread G[N]Urpreet Singh
)').find('th').each(function(i) { // find 'n' > of clicked column > n++; return ($(this)[0] != th) > }); > $('th:nth-child(' + n + '), td:nth-child(' + n + ')').each(function() > { > $(this).insert

[jQuery] Moving the COLUMNS of a table around

2007-07-16 Thread G[N]Urpreet Singh
Hi, I was trying to move around the columns of a table. I noticed that you can specify styles for columns using the html construct. I tried this... $(document).ready(function() { $("#switch").click(function() { $("#2").hide(); }); });

[jQuery] Re: How to select the kast TR of a TABLE?

2007-07-04 Thread G[N]Urpreet Singh
this works size = $("$the_table").find("tr").size(); last= $("$the_table").find("tr").gt(size-2); $(last).addClass("lastrow"); Gurpreet On 7/4/07, howa <[EMAIL PROTECTED]> wrote: > > > var row = jQuery("#test > tbody > tr : last"); > > something like that? (of coz the above one didn't work) > >

[jQuery] Re: WYSIWYG Editor in Jquery

2007-07-03 Thread G[N]Urpreet Singh
tor plugin for the last week, which you can see in action > > > here: > > > http://www.fyneworks.com/jquery/FCKEditor/ > > > > > > Feedback welcome... > > > On Jul 3, 1:48 am, "g.atahualpa" <[EMAIL PROTECTED]> wrote: > > > &g

[jQuery] WYSIWYG Editor in Jquery

2007-07-02 Thread G[N]Urpreet Singh
Hi, I was trying to look for a WYSIWYG Editor written in JQuery which can do stuff like Links, Lists, and Tables too. Couldn't find one so far. Could anyone point me to a plugin?? Thanks, Gurpreet -- Gurpreet Singh

[jQuery] How to wait or freeze between 2 statements

2007-06-29 Thread G[N]Urpreet Singh
Hi, What I want to achieve is that the user click "Build" and the "Preview" links gets updated with the new link. Before the link is updated, it is replaced by a "Loading..." msg. This is working perfectly. What I cant figure out is that can I make the browser wait for half a second after loading

[jQuery] Re: Remove Parent not working in IE6

2007-06-21 Thread G[N]Urpreet Singh
Thanks Guys, It worked like a charm... Gurpreet On 6/20/07, Scott Sauyet <[EMAIL PROTECTED]> wrote: > > > G[N]Urpreet Singh wrote: > > I cannot "remove" the parent of an element in IE6. The behavior in IE6 > > is that only the first of the parents is

[jQuery] Remove Parent not working in IE6

2007-06-20 Thread G[N]Urpreet Singh
Hi guys, I cannot "remove" the parent of an element in IE6. The behavior in IE6 is that only the first of the parents is getting removed and then it stops working. Here is the code... $(document).ready(function() { $("#trash").click( function() { $(this).parent(