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

2007-10-07 Thread G[N]Urpreet Singh
where this would have been an issue lately. My solution a bad fix that I don't recommend, but I couldn't find anything else. Anyone else have ideas/comments/solutions? On Oct 3, 6:49 pm, Guy Fraser [EMAIL PROTECTED] wrote: G[N]Urpreet Singh wrote: Once every few times the page is loaded

[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

[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] wrote:

[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] 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

[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

[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] 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 col html construct. I tried this... script language=javascript $(document).ready(function() { $(#switch).click(function() { $(#2).hide(); }); }); /script table

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

2007-07-16 Thread G[N]Urpreet Singh
for each col (TH, TD) and use that instead of nth-child. - Richard On 7/16/07, G[N]Urpreet Singh [EMAIL PROTECTED] wrote: Hi, I was trying to move around the columns of a table. I noticed that you can specify styles for columns using the col html construct. I tried this... script

[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) thanks. --

[jQuery] Re: WYSIWYG Editor in Jquery

2007-07-03 Thread G[N]Urpreet Singh
used FCKEditor in the past in a Drupal project and it is good, although I use TinyMCE for my current Drupal projects. On Jul 1, 10:24 pm, G[N]Urpreet Singh [EMAIL PROTECTED] wrote: Hi, I was trying to look for a WYSIWYG Editor written in JQuery which can do stuff like Links

[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 so

[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 getting removed and then it stops working