[jQuery] Re: jQuery height() and width() methods

2008-04-04 Thread Bryan Blakey
standards compliant. Am I misunderstanding this? On Mar 20, 9:56 pm, Rick <[EMAIL PROTECTED]> wrote: > I think its because it is standards conforming to not to include > padding/border. > ie does include border/padding when using offsetHeight, most other > browers dont. > >

[jQuery] Re: Clone dont work. Why?

2007-12-15 Thread Bryan Blakey
Antonio, try something like this: $('span.bt-more').bind('click', function(event){ var span = event.target || event.srcElement; var $parent = $(span).parent(); $parent.after($parent.clone()); }); If my understanding of the 'this' keyword is correct, in your anonymous clic

[jQuery] Re: Simple Table Filter

2007-12-13 Thread Bryan Blakey
Have you figured out a solution for this problem yet? If not, you can use a function similar to this: function filterTable(pstrValue) { if( pstrValue == 'none' ){ $('#my_table > tbody > tr').show(); } else { $('#my_table > tbody > tr').hid

[jQuery] Re: $.load() javascript problems in IE and Safari

2007-09-19 Thread Bryan Blakey
se may help you solve your problems! > > > peace, > > > Jt > > > On Sep 11, 3:05 am, Stamen Georgiev <[EMAIL PROTECTED]> wrote: > > > > I'm having the same problems here. > > > And it looks the same with the latest release (1.2) :-( > > &

[jQuery] $.load() javascript problems in IE and Safari

2007-09-10 Thread Bryan Blakey
As many others have already noted, if your page makes an AJAX call that returns javascript and HTML, for some reason IE and Safari are unwilling to execute any of the javascript. Looking through the jQuery code, I noticed that there *used* to be an evalScripts function in the same object as the l