Mon Oct 22, 2012 1:18 pm
<script type="text/javascript">
$(function() {
// to display
$.ajax({
url: 'myXmlFile.xml',
dataType: 'html',
success: function(data) {
$('#xmldata').text(data);
}
});
$.ajax({
url: 'myXSLFile.xsl',
dataType: 'html',
success: function(data) {
$('#xsldata').text(data);
}
});
// The transformation
$('#myDiv').xslt({xmlUrl: 'myXmlFile.xml', xslUrl: 'myXSLFile.xsl'});
});
</script>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.