There's a little admin panel I'm doing and wondering is it possible after clicking a button in a panel to add a div box inside the index.php file with jQuery?
If so, a little example would be appreciated!
|
|
You would need to send an XML http post request using jQuery's $.post() method, and then have a php file on the server modify the index file, or a text file that can be included in the index file:
Make sure the indexEdit.php has session validation or someone else could could attempt to post information to it and perform an external edit. |
|||
|
|
|
To add code to the start of a div, use the Here are 2 examples for adding code to the body of an html page:
If you wanted to load content dynamically, you would have to use the ajax method and use the code above in the callback. |
|||
|
|