![]() ![]() |
| locoforcoco9 |
May 3 2012, 07:14 PM
Post
#1
|
|
Group: Members Posts: 6 Joined: 18-January 11 Member No.: 13,624 |
Okay, so I have't used jQuery before, and I'm trying to make an XML blurb thing.
It's supposed to read stuff from an XML file, structured as so: CODE <blurbs> <blurb id="0"> <title>TITLETEXT</title> <body>BODY TEXT<body> </blurb> ... </blurbs> My jQuery code is: CODE $(document).ready(function(){ $("#descButton").click(function(){ $("#descText").slideToggle(); }); $("#menuTitle").click(function(){ $("#specMenu").animate({width: 'toggle'}); }); $.ajax({ type: "GET" url: "blurb.xml" dataType: "xml" success: function(xml) { var id = Math.floor(Math.random()*6); var blurbs = $(xml).find("blurbs"); var blurb = (blurbs).find("blurb id="+id); var title = (blurb).find("title").text(); var body = (blurb).find("body").text(); $(title+"<hr style='width:95%' />"+body).appendTo('.blurbs'); } }); }); Thanks for any help. I'll try to respond ASAP |
| Frederiek |
May 4 2012, 04:51 AM
Post
#2
|
|
Programming Fanatic ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Members Posts: 3,539 Joined: 23-August 06 From: Europe Member No.: 9 |
Try searching for "jquery: read xml".
-------------------- "The earth does not belong to us. We belong to the earth."
from Vue du ciel (in French) "Leave scepticism to others and take action" from HOME by Goodplanet An inconvenient truth by Al Gore |
![]() ![]() |
|
Lo-Fi Version | Time is now: 18th May 2013 - 05:41 AM |