[jQuery] Found a bug?

2007-03-29 Thread Марат
Try this $('.anyclass').css({ text-decoration: underline, cursor: pointer, cursor: hand }); -- B.r. Marat ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] got troubled returning combined data: html+javascript

2007-03-04 Thread Марат
Hi, guys! I've got in 1.html something about $(document).ready(function() { var h = $.ajax({url: test.html,async: false,dataType:'html'}).responseText; $('body').append(h); }); test.html contains smth about that pTest data/p script type=text/javascript /*![CDATA[*/ alert('test');

Re: [jQuery] reaplying rules to returned data

2006-11-07 Thread Марат
); }, 'td.selected:click': function(){ $(this).removeClass(selected) .addClass(selectable); }});Maybe it will help.On 11/5/06, Марат [EMAIL PROTECTED] wrote: Interesting way to solve it. But not actually what I need. This way I have to write rules child to .content click. But the data can be returned in many

Re: [jQuery] reaplying rules to returned data

2006-11-05 Thread Марат
(function(e){ if ( e.target.id == loadeddata) $(e.target).color('red'); }); $(.menu li).click(function() { $(.content).load('site.php',{page: $(this).attr('name')}, function(){ $(this).show(slow); }); });});On 11/3/06, Марат [EMAIL PROTECTED] wrote: So, than just take a look waht happens if i

[jQuery] browser support

2006-11-05 Thread Марат
Hi, guys!What browsers are supported by jQuery? And does IE 5.0 supports it totally?-- С уважением, Марат Мамяшев ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] reaplying rules to returned data

2006-11-03 Thread Марат
whether an event handler is bound to an element before binding it. So you're not going to have doubling or tripling event handlers.-- Yehuda On 11/2/06, Марат [EMAIL PROTECTED] wrote: Hi, there!Is there more effective and beautiful way to reload all rules than that? Or a plugin, or something about

[jQuery] reaplying rules to returned data

2006-11-02 Thread Марат
();-- С уважением, Марат Мамяшев ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] stopPropagation case

2006-10-26 Thread Марат
square in jQuery than that $('#wrapper').click(function(){alert( this.id);}); // shows wrapper id $('#square').click(function(e){e.stopPropagation();});???-- С уважением, Марат Мамяшев ___ jQuery mailing list discuss@jquery.co

Re: [jQuery] stopPropagation case

2006-10-26 Thread Марат
is wrong with e.stopPropagation(), except for the long method name? jQuery provides that method for IE as well and why having to rememberanother function name if the standard works cross browser through jQuery...-- Klaus -- С уважением, Марат Мамяшев