[jQuery] Event handling

2009-06-15 Thread asrij...@googlemail.com
Hi Guys, I'm using two plugins which are triggered by a submit event (jquery.validate and jquery.comboselect) and now I'm facing one issue: If any validation error occurs my error msg is printed and my form isn't submitted (correct behaviour) but the comboselect plugin triggers at submit too and

[jQuery] update from 1.2.6 to 1.3.2 $('select') - strange!?

2009-05-19 Thread asrij...@googlemail.com
Hi Guys, just started to upgrade my site jquery version to the latest, now I'm facing some strange behaviour. In 1.2.6 - $('select[name^="q_select_"]') - returns the select - object In 1.3.2 - $('select[name^="q_select_"]') - returns the options of the select !? Some1 else facing this problem?

[jQuery] $.load() doesn't fires script tags?

2009-05-18 Thread asrij...@googlemail.com
Hi Guys, just facing an issue: I'm creating a worklflow for my "app" and found $.load() very usefull. It works except that tags aren't loaded. I got some jQuery Objects (like Flexbox etc) in my remote pages and would like to have access to this objects after the load() but after load() there are

[jQuery] [jQuery) IE 7 and select options, click/hover/mouseover

2009-04-03 Thread asrij...@googlemail.com
Hi guys, I wrote a litte code to get some tooltips in my multiple select box, if I hover over an option, the tooltip appears -> only in FF2/FF3, Opera9. IE7 doesn't do anything? Some1 else faced such a problem? I'm using jQuery 1.2.6 - btw. ex: $('#select > option').mouseover(function(){

[jQuery] IE7, rendering, script executing

2009-03-17 Thread asrij...@googlemail.com
Hi all, I'm facing a problem with the document ready and IE7. I'm workin atm on a jboss portal with some jsr168 portlets. My problem is, that some of my portlets have a lot form elements (inputs, selects). If I request the page the first thing which IE7 displays is the site without any executed s

[jQuery] eq() driving me nuts...

2008-12-15 Thread asrij...@googlemail.com
Hi Guys, gotta problem here and i don't know why it occurs: Example: Simple Html Page jQuery.noConflict(); jQuery(document).ready(function() { alert( jQuery('#test:eq(1) > a:eq(0)').attr('href') ); }); test tes