[jQuery] livequery help

2008-05-08 Thread skunkwerk
how do i access the url of an tag matched by jquery? when i was not using livequery, i could just do $(item)[0] but that doesn't seem to be working anymore, as its returning an http document now. here's my code: container.find("a.vote").livequery('click', function(e){ e.preventDefault(); $.post

[jQuery] Re: SELECTOR MADNESS! How To Grab Lowest Child Node's Text?!

2008-05-08 Thread darren
hey joe, it looks like testing node types may help with your problem. Google node types and you'll find that DOM text nodes are type 3, element nodes are type 1 etc etc. You could do something using the selector expression [nodeType=3] to determine if the current node you have selected is a text n

[jQuery] ajax tabs not working

2008-05-08 Thread skunkwerk
i'm following the instructions here: http://docs.jquery.com/UI/Tabs i've included the following: http://dev.jquery.com/view/trunk/ ui/ui.core.js"> http://dev.jquery.com/view/trunk/ ui/ui.tabs.js"> http://dev.jquery.com/view/trunk/themes/ flora/flora.all.css" type="text/css" media="screen

[jQuery] Re: Problem with IE6/7 show/hide and relative positioned elements below

2008-05-08 Thread kareneliot
I hate to bump this, but if anyone has any fixes for this, that would be great...?

[jQuery] livequery help

2008-05-08 Thread skunkwerk
hi, how can I access the URL of an tag - when I was using the non- livequery version of this ajax form, I could just use $(this)[0] but that's returning an html document now, and $(this).href is undefined. var container = $("#table"); container.find("a").livequery('click', function(e){

[jQuery] Re: Modal Dialog in blockUI

2008-05-08 Thread Adwin Wijaya
it is easy ... for example your block like this get the page from ajax first ... webpage = ... ; //get from ajax $('#blockui').empty(); $('#blockui').append(webpage); On May 6, 10:34 pm, Adam <[EMAIL PROTECTED]> wrote: > Is it possible to show an external webpage inside of a blockUI modal >

[jQuery] Re: Checkbox confusion

2008-05-08 Thread Wizzud
Try this... $("#bChecklist input:checkbox").click(function(event){ var item = $(this).parent().text(); alert ( (this.checked ? '' : 'Un') + 'Checked = ' + item); }); On May 8, 1:38 am, mr4d <[EMAIL PROTECTED]> wrote: > Hi all, > > Can't quite get the the following functionali

[jQuery] Re: beginner question on show/hide and reusing functions

2008-05-08 Thread Wizzud
Something like this?... $(document).ready(function() { var sp = $('.searchpanel').hide() //hide boxes initially , so = $('#searchoptions') , anim = false //prevents fast clicking of second option ; // shows all $('a.showall', sp).click(function() { anim = true; //hide th

[jQuery] sortable: drag list items by custom handle

2008-05-08 Thread emi polak
Hi there, I am using $("#myList").sortable({}); to "sortable-ize" a ul list. All works fine, however the entire "li" element responds to dragging and I want the "li" elements to be draggable only by using a custom handle like this: some content here MY HANDLE Any ideas? Thank you! emi

<    1   2