[jQuery] Finder like navigational widget

2008-05-20 Thread roryf

Hi,

Does anyone know of and OS X Finder style widget/plugin? As in,
several lists of items, click one a list of child items appear in the
list to the right etc.

Cheers
Rory


[jQuery] Re: jquery.com not available

2007-07-09 Thread roryf

Yep, I keep getting a timed out response.

On Jul 9, 9:41 am, Stefan Kilp [sk-software] [EMAIL PROTECTED]
wrote:
 jquery.com not available for me,
 anyone else having the same problem?

 Best regards,
 Stefan Kilp
 --
 Stefan Kilp
 SK-Software, Entwicklung  Beratung

 email: [EMAIL PROTECTED]

 fon  : +49 6151 93344-0
 fax  : +49 6151 93344-20
 Herta-Mansbacher-Str. 98
 64289 Darmstadt, Germany.
 -



[jQuery] Possible bug on button click event

2007-06-26 Thread roryf

Hi,

I've come across some behaviour that seems a bit odd to me, not sure
if its by design or a bug. I've been trying to fire the click event of
a button with the following:

$('#mybtn').click();

However this causes the click event to fire twice, the result is the
form being submitted twice. I was able to fix it by using instead:

$('#mybtn')[0].click();

Which only fires the event once. This only happens with buttons
(type=button|submit|reset) not any other element I've tried like
hyperlinks. I haven't tried it with a collection of buttons rather
than one selector, I guess that would be the next step. So, is it
supposed to do this and if so why?

Cheers,
Rory Fitzpatrick



[jQuery] Re: traversing the content of an iframe

2007-06-22 Thread roryf

Is there a way to do this with jQuery without resorting to browser
sniffing?

On Jun 14, 8:37 am, Jean-Francois Hovinne [EMAIL PROTECTED]
wrote:
 Hi Alexandre,
 I don't know if it's the better way to do it, but in WYMeditor we use
 this technique:

 !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Strict//EN 
 http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd;
 html
 head
 titleiframe test/title
 script type=text/javascript src=jquery.js/script
 script type=text/javascript

 function initIframe(iframe) {

   if ($.browser.msie || $.browser.opera) {
 var doc = iframe.contentWindow.document;
   }
   else if ($.browser.mozilla || $.browser.safari) {
 var doc = iframe.contentDocument;
   }
   else {
 //handle unsupported browsers
   }

   $(doc.body).html('ptest/p');

 }

 /script
 /head
 body
 iframe src=iframe.html onload=window.parent.initIframe(this)/
 iframe
 /body
 /html

 On Jun 13, 6:32 pm, Alexandre Plennevaux [EMAIL PROTECTED]
 wrote:

  dear all,

  i need to access the dom inside the page in an iframe . Is it possible at 
  all?

  so far all my attempts failed miserably... your feedback would be precious!

  thanks

  alexandre

  Ce message Envoi est certifié sans virus connu.
  Analyse effectuée par AVG.
  Version: 7.5.472 / Base de données virus: 269.8.15/847 - Date: 12/06/2007 
  21:42


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
jQuery (English) group.
To post to this group, send email to jquery-en@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-en?hl=en
-~--~~~~--~~--~--~---