Before this function executes, I use a SharePoint web service query to get a specific ID. This ID is used in links that are dynamically created. What I need to do is pass that ID to run a seperate query. So, what should happen is that when the user hovers over an element, my code grabs the ID and then queries for a story. Instead what happens is that each hover appends the array and I get many results rather than the last hover. I'm a noob so I don't know how to do this, but think it should be a hover off -> clear array?
$('.link').hover(function() {
var pathname = $(this).attr('href');
var ID = pathname.split('#');
$('.link').click(function() {
//Pass that ID into the SP Services function
$().SPServices({
operation: "GetListItems",
// Force sync so that we have the right values for the child column onchange trigger
async: false,
webURL: "http://site/child/",
listName: "Stories",
// Filter based on the currently selected parent column's value
CAMLViewFields: "<ViewFields><FieldRef Name='LinkTitleNoMenu' /><FieldRef Name='Story' /></ViewFields>",
//The CAML Query keeps getting each ID that was hovered on, rather than the last one.
CAMLQuery: "<Query><Where><Eq><FieldRef Name='ID' /><Value Type='Counter'>" + ID[1] + "</Value></Eq></Where></Query>",
//CAMLRowLimit: "4",
completefunc: function (xData, status) {
$(xData.responseXML).find("[nodeName='z:row']").each(function() {
var Html = ""; //doesn't work to clear the array
var Html = "<li style=\"margin-bottom: 1em;\"><strong>" + $(this).attr("ows_Title") + "</strong>" + $(this).attr("ows_Story") + "</li>";
$("#ID").append(Html);
});
}
});//End SPServices Call
}); //End click
});//End Hover
@RustyTheBoyRobot I removed the SP Webservices and then did $("#ID").html(Html);. The problem was with the CAML Query (I Hate CAML!). But after a corrected query $(object).html(var) is what you want to use to return the last split item of an array which results if you perform a string split.
$("#ID").append(Html);<- that appends – hunter Jun 11 '12 at 17:15@in front of their name; it sends them a notification so they know you've responded. – RustyTheBoyRobot Jun 11 '12 at 19:20