Jump to content

keirlavelle

New Members
  • Posts

    1
  • Joined

  • Last visited

keirlavelle's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. jQuery would be your best bet for something like this, for example if you had a page with div id "main" in which you wanted to display your content and a text file called 'main-content.txt' the entire code to display this (after including jQuery on your page) would be: // *the $(document).ready(function() { part is only included once per page* $(document).ready(function() { $('#main').load('/path/to/main-content.txt'); });
×
×
  • Create New...