Created
May 23, 2019 20:38
-
-
Save JulaineScott/1c0fdbe9dd9476fde13fe5d0ace73c36 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//bring in a dib with an id of part1 from another page: | |
$('#newArticle').load('inc/anotherPage.html #part1'); | |
//simple ajax load of content (ie no post/get) from an external file | |
$('a[href="writeNew"]').click(function(e){ e.preventDefault(); $('#newArticle').load('inc/userWrite.php');}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment