[jQuery] file browser jQuery plugin?

2008-12-25 Thread Girish Venkatachalam
Hello friends, Is it possible to create a directory view with jQuery and Ajax? I find a few plugins in repository but they use PHP and I cannot get them to work. I want a Perl or Python CGI script to generate the directory structure and use jQuery to display it in the browser. How to do it?

[jQuery] My cycle plugin code

2008-11-14 Thread Girish Venkatachalam
Hello folks, I am not here to ask a question or to publish a plugin. I guess I cannot do either right now. ;) Instead I wish to express my heartfelt gratitude to the genius called Mike Alsup. He has changed my life with the fabulous cycle plugin.

[jQuery] Re: Exclude inputs when using the keypress event

2008-11-01 Thread Girish Venkatachalam
On 14:53:28 Nov 01, ryanfitzer wrote: I'm building in a few keypress events into a site and I'm having trouble keeping them from triggering when a text field has focus. For some reason this only happens on the second if statement. The first one does fine. What am I missing? I am not

[jQuery] Re: Scroll Up Headline Reader ... with reverse button.

2008-11-01 Thread Girish Venkatachalam
On 15:51:45 Nov 01, Karl Swedberg wrote: Hi there, I'd recommend having a look at the Cycle plugin. It has tons of options that you can use, including next/prev functions, thumbnails, etc. Have a look through the demo pages, as they show just how versatile this plugin is:

[jQuery] Re: Exclude inputs when using the keypress event

2008-11-01 Thread Girish Venkatachalam
On 20:12:23 Nov 01, ryanfitzer wrote: Thanks Girish. I'll look into the plugin you linked to. Btw, the reason I'm using single keys is to keep from conflicting with any OS or Browser hotkeys. I've also grown to prefer them because of Gmail and Google Reader. I guess it is a matter of

[jQuery] Is it impossible to popup a PDF print dialog?

2008-10-31 Thread Girish Venkatachalam
Dear all, I know this is not directly related to jQuery but I wish to accomplish this task. My googling suggests that window.print() only prints the currently displayed html page. I wish to print the PDF that is linked to. How do I do that? I think opening an iframe can do it. If possible

[jQuery] Re: state - region - suburb drill down using image maps

2008-10-26 Thread Girish Venkatachalam
On 13:26:09 Oct 27, Duncan wrote: The problem is that when I redraw the image map, the clicks dont work anymore (i.e. the jquery $(.mapOpt).click(function(){ ) and also the new imagemap insertion didnt work with $(#imgmap).html(r.IMAGEMAP); I had to use the old way var oldskool =

[jQuery] Re: Looping not working for selectors?

2008-10-23 Thread Girish Venkatachalam
On 22:12:19 Oct 22, Michael Geary wrote: There are many ways I could imagine a piece of code not working. Could you be more specific about what didn't work? :-) I did not want to be verbose. Your analysis is correct. I did not get the value I expected. I was getting the last value as

[jQuery] Looping not working for selectors?

2008-10-22 Thread Girish Venkatachalam
Dear friends, I am a newbie to jQuery and more so for javascript. Please pardon my ignorance. I am wondering why this code does not work. for(i = 0; i 10; i++) { $('.treeview:eq(' +i+ ')').click(function() { $('.monitor:eq(' +i+ ')').trigger('click'); }); }