How to Load External Page Using AXAJ | jQuery AJAX Actualize

Actualize is a dynamic AJAX content upload plugin that allows the consumer to upload an external webpage to the current webpage by clicking on a links.

How to make use of it:

1. Load the JavaScript actualizer.js after loading the newest jQuery JavaScript library.

<script src="/path/to/cdn/jquery.min.js"></script>
<script src="/path/to/actualizer.js"></script>

2. Create a DIV container during which the AJAX content material ought to be loaded.

<div id="ajax-content">
  Content Here
</div>

3. Create a link on the web page and specify the trail to the exterior web page.

<a id="demo" href="ajax.html">
  Click Me To Load
</a>
<!-- ajax.html -->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>AJAX Content</title>
</head>
<body>
  AJAX Content Here
</body>
</html>

4. Call the function on the container component and decide the choice of the AJAX link.

$(function());

Load Content from Another Page Using Ajax, jQuery AJAX Actualizer Plugin/Github


See Demo And Download

Official Website(ratajs): Click Here

This superior jQuery/javascript plugin is developed by ratajs. For extra Advanced Usages, please go to the official website.

Leave a Comment