What is the best approach to have an ajax form and table in the same page without the need to refresh?

Take a look at this explanation of jQuery's ajaxForm and ajaxSubmit: justwebdevelopment.com/blog/ajaxform-and....

To execute code after the $.load() method has completed you need to place it in the callback of the call to load(). For example: $("#myElement"). Load( '/location/of-target.

Html', function(data) { // put code here to execute after the load has completed. // for example to append a specific div. $(data).

Find("#myDiv"). AppendTo("#containerDiv"); } ); Further reading here.

But I cant execute the same function in the callback and document. Ready otherwise, the code code bind to a click will be executed twice on click, right? – malkawi Dec 10 at 17:04.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions