I defined a list where a Summary list is a coloum, in my javascript code i want to read the values of the links one by one...
sliderText = listItem.get_item('Description0');
sliderTitle = listItem.get_item('Title');
sliderLinks = listItem.get_item('SummaryLinks');
So the value of sliderLinks now is:
<div title="_schemaversion" id="_3">
<div title="_links">
<div title="_link">
<span title="_title">Home</span>
<span title="_order">1</span>
<span title="_begincolumn">True</span>
<span title="_linkurl">
<a href="http://gmail.com">http://gmail.com</a>
</span>
</div>
</div>
<div title="_view">
<span title="_columns">1</span>
<span title="_linkstyle"></span>
<span title="_groupstyle"></span>
</div>
</div>
in the COM, isn't there functions to get the value of the URL and title instead of this HTML code?