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
$("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){
>
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,
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
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
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
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
7 matches
Mail list logo