[jQuery] Calling PHP Functions from jQuery?

2008-07-14 Thread Yavuz Bogazci
Hi, is it possible to call php functions from jquery? I knew how to call a .php page from jquery with $.post and to echo output or return a JSON Object. But my application growth and there is an increase in single php pages. This is very confusing and the filemanagement is getting complicated. H

[jQuery] Re: fadIn not working in chain?

2008-07-10 Thread Yavuz Bogazci
$("table tr#d1").fadeIn("slow"); }); }); seems now to work. Its curious!! Is that ok what i have done? thanks yavuz Yavuz Bogazci schrieb: > Hi, > > i have these lines of code: > > $('#save').click(function(event){ >

[jQuery] Re: Ho to remove or add a new table row?

2008-07-10 Thread Yavuz Bogazci
what your source looks > like with any DOM changes included.  Even better, the FireBug plugin for > Firefox allows you to look at the source, and even watch it change in > real time as your javascript manipulates the DOM. > > Carl > > Yavuz Bogazci wrote: > > I seems to work,

[jQuery] fadIn not working in chain?

2008-07-10 Thread Yavuz Bogazci
Hi, i have these lines of code: $('#save').click(function(event){ $("table tr#t2").after("Insert this row").fadeIn("slow"); }); If the save buttons gets clicked, i append a new row. This works fine. But when additionally want to fadeIn, it didnt work. Does the fadeIn Effect not work in

[jQuery] Re: Ho to remove or add a new table row?

2008-07-09 Thread Yavuz Bogazci
Thank you very much! I will try it now and give you feedback! Thanks Yavuz On Jul 9, 5:31 pm, "..:: sheshnjak ::.." <[EMAIL PROTECTED]> wrote: > You can easily remove any row that you selected, only question is if > you can select apropriate rows. > > $("table tr").remove(".remove"); // remo

[jQuery] Re: Ho to remove or add a new table row?

2008-07-09 Thread Yavuz Bogazci
I seems to work, but when i show the page-source i cant see the new rows. But they are visible in the browser. Its very strange. On Jul 9, 5:31 pm, "..:: sheshnjak ::.." <[EMAIL PROTECTED]> wrote: > You can easily remove any row that you selected, only question is if > you can select apropriate r

[jQuery] Ho to remove or add a new table row?

2008-07-09 Thread Yavuz Bogazci
Hi, i have a table with data from my mysql database. Now i want to add and delete the records via jQuery. Is this possible? I need to remove the selected row or add a new row and update selected row. Is there any sample or idea how to solve this problem. I searched with Google and couldnt find an