timmylogue
says
Can anyone kindly help me to display .xml data into textarea 
<form method="post" action="xml/news.php"> <textarea name="area" class="textArea" id="area" rows="12" cols="25"><xml src="xml/news.xml"></xml></textarea><br /> <input name="submit" value="submit" type="submit" /> </form>XML :
<news>Why hardware is the new software</news>
Thanks to anyone that helps!
Tim
timmylogue
says
Got it. I changed it to load into a div instead. Hope this helps anyone else out.
<script>
$(document).ready(function(){
$.ajax({
type: "GET",
url: "xml/news.xml",
dataType: "xml",
success: function(xml) {
var enews = $(xml).find('news').text();
$('<div class="" id="+id+"></div>').html(''+news+'').appendTo('#currect_news');
}
});
});
</script>
<div class="currect_news" id="currect_news"> </div>
Tim
