In this article I will show you how to use jQuery add image using XML file. Here, First, you add a source or URL of an image to an XML document, and then by using jQuery ajax we can gather details of each image. Once, you extract image details from the source to an <img> tag using jQuery. By using jQuery “.attr()” method you will get the properties of the image then, using “.appendTo()” append method in jQuery add or append the image to an HTML DIV element.
XML File:
Create an XML file and name it as imageList.xml. Copy and paste the following code.
<?xml version="1.0" encoding="utf-8" ?>
<list>
<ref>
<img>images/f1.jpg</img>
<title>AngularJS for Beginners</title>
<alt>Beginners Guide</alt>
</ref>
<ref>
<img>images/f2.jpg</img>
<title>XML for Beginners</title>
<alt>Beginners Guide</alt>
</ref>
<ref>
<img>images/f3.jpg</img>
<title>HTML5 Xpressions</title>
<alt>HTML5 Tips</alt>
</ref>
</list>
HTML File:
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$.ajax({
type: 'GET',
url: 'imageList.xml',
dataType: 'xml',
success: function (xml) {
$(xml).find('ref').each(function () {
img = $(this).find('img').text();
title = $(this).find('title').text();
alt = $(this).find('alt').text();
$('<img />')
.attr('src', "" + img + "") // ADD IMAGE PROPERTIES.
.attr('title', title)
.attr('alt', alt)
.width('113px').height('113px')
.css('border', "solid 1px green")
.appendTo($('#show_images')); // ADD THE IMAGE TO DIV.
});
}
});
});
</script>
<body>
<div id="show_images" style="width:auto;"></div>
</body>
Output- appendto in jQuery:
Post your comments / questions
Recent Article
- Your system's memory configuration has changed since it entered hibernation.
- Save image to client browser using jQuery?
- Get filename of image jQuery?
- How to get the image src using JavaScript?
- System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Net.Http.Formatting' with identity 'System.Net.Http.Formatting, Version=4.0.0.0
- Cordova Android build error "Cannot read property 'length' of undefined". An error occurred while running subprocess cordova.
- ERROR in The Angular Compiler requires TypeScript >=3.9.2 and <4.0.0 but 3.8.3 was found instead
- Code ENOLOCAL Could not install from "android" as it does not contain a package.json file.
Related Article