[jQuery] Re: Need to make a edit layout system using php and jquery...?

2009-02-01 Thread Manowar721
Check this link => http://ui.jquery.com/ Good Luck, Manowar721 On Feb 1, 3:19 pm, "shyhockey...@gmail.com" wrote: > Hi, I am right now trying to make a edit layout  system. > > basicly I want to know how I can use jquery to  grab the height width > and position ele

[jQuery] Re: toggle checkbox when clicking

2009-02-01 Thread Manowar721
checkbox").attr ("checked","checked"); } else if ($(this).siblings().children().filter(":checkbox").attr ("checked")==true){ $(this).siblings().children().filter(":checkbox").removeAttr ("checked"); } }; $(&q

[jQuery] Re: Selecting parent id

2009-02-01 Thread Manowar721
var getParent = function(){ myparentID = $(this).parent().parent().parent().attr("id"); parentID = "My table ID is: " + myparentID; alert (parentID); }; $("td").bind("click", getParent); Hope that helps, Manowar721 On Jan 31, 3:01 pm, Chrille w

[jQuery] Re: getElementById with ajax

2009-02-01 Thread Manowar721
#x27;'); $("#shippingResult").hide(); $("#shippingResult").load(url).show(); return false; }; $("#getResult").bind("click","getShipping"); }); I didn't test this...but should get you started in the righ

[jQuery] Re: How to get the value of List and concatenate with JQUERY

2009-01-26 Thread Manowar721
This line above $("ul#developerul > li").addClass("getValues"); does nothing. It was part of another way I was going to suggest, then forgot to erase it. Sorry for the confusion. ,Manowar721 On Jan 26, 8:59 am, Manowar721 wrote: > As long as, I am understanding

[jQuery] Re: How to get the value of List and concatenate with JQUERY

2009-01-26 Thread Manowar721
operul > li").eq(x).attr("value"); } $("ul#developerul").click(function(){ alert (values); }); }); Outputs 1,2,3. Hope that helps, Manowar721 On Jan 22, 3:38 pm, nk wrote: > Hi All, > > I have a list which is being