Re: [jQuery] Strange Safari bug

2007-03-08 Thread j. siefer
Hi,... i have exactly the same problem using jquery 1.1 is there anything to watch out for? greetings j. siefer Bryant Cutler wrote: I'm working on a rather complicated CMS app that uses the AJAX plugin heavily. Everything's coming back our backend Java Textile implementation as XML

Re: [jQuery] Strange Safari bug

2007-03-08 Thread j. siefer
if($.browser.safari) $('#mytextarea').text(some text); workes for me -- View this message in context: http://www.nabble.com/Strange-Safari-bug-tf1874142.html#a9374214 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery

Re: [jQuery] Some Firefox search plugins I made

2007-01-25 Thread j. siefer
*g funny, but i think ill use it, thanks -- View this message in context: http://www.nabble.com/Some-Firefox-search-plugins-I-made-tf3097158.html#a8612971 Sent from the JQuery mailing list archive at Nabble.com. ___ jQuery mailing list

[jQuery] [PLUGIN Interface] what is dragHandle for?

2007-01-24 Thread j. siefer
Hi, I wounder what dragHandle is for? doco saiys just: true to make the element draggable, string selection for drag handle I was hopping to find something that the handle will be dragged while the user is resizing, currently i have to do it by my self with: onResize() /*{ drag handle */}

Re: [jQuery] Problem with when posting with ajax.

2007-01-24 Thread j. siefer
try c = encodeURIComponent(my content with a lalal test); var pars = 'id='+ident+'content='+encodeURIComponent(new_content); zelexir wrote: Hi there. I ran into a little problem today, working with some forms. Whenever something is submitted and has a in it it will break my code.

Re: [jQuery] how to tell if checkbox is checked and manipulate

2007-01-24 Thread j. siefer
:checked should work, in compination with is(:checked); $(this).is(:checked).length ? alert(yes) : alert(no); or something like this, try around or to highlight $(.checklist :checked).highlight(); Sean O wrote: Hi, I have a checklist comprised of 8 checkboxes in a table, all with

Re: [jQuery] Form and .submit

2007-01-24 Thread j. siefer
script type=text/javascript $(document).ready(function(){ $(#myForm).submit(function(){ alert(Submit Pressed); )};// swirtch it to }); }); /script -- View this message in

Re: [jQuery] simple selector with ID doesn't work anymore

2007-01-24 Thread j. siefer
hi, tiny hint $(div#tab_1) is slower then $(#tab_1) to your problem, i think your error might be somewhere else, maybe you gave your object with $('div').id('tab_1') // this will not work anymore $('div').attr('id','tab_1') // you have to do it like this, maybe you got stucked there some

Re: [jQuery] select form problem

2007-01-24 Thread j. siefer
have you tried this? ...checked=checked $(select#s_morning option:eq( + people + )).attr(checked, checked); -- View this message in context: http://www.nabble.com/select-form-problem-tf3080085.html#a8589550 Sent from the JQuery mailing list archive at Nabble.com.

[jQuery] [PLUGIN] Interface.Draggable zIndex ignored

2007-01-17 Thread j. siefer
-- .Draggable({ zIndex:1000, ghosting:true, opacity:0.5, containment:[_dtP.left,_dtP.top,_dtP.w,_dtP.h], insideParent:true }) --- Hi, i have problems with

Re: [jQuery] Interface 1.1

2007-01-16 Thread j. siefer
really nice! thank you!!! your docu. says for draging elements use string ('parent' or 'document') or array (top, left, width, height) for containment should be array (left, top, width, height) so works fine, greetings jac -- View this message in context: