I have to read Title and Location from a picture library and display using CEWP.

can some one suggest how to read SharePoint list item values using javascript.

Thanks in advance

link|improve this question

0% accept rate
feedback

3 Answers

You can use jQuery to access the list items via SharePoint Web Services. Refer for example here - SharePoint Web Services with jQuery

link|improve this answer
feedback

In SharePoint 2010 there are three different types of Client Object Model extension you can use. They are Managed Client Object Model, ECMAScript and silverlight extension.

This link more close to your requirement How to: Retrieve Lists Using JavaScript and How do you get the current list item in JavaScript?

SP.ListOperation.Selection Methods

var value = SP.ListOperation.Selection.getSelectedItems();

Check following links for more information:
SharePoint 2010: Use ECMAScript to manipulate (Add/Delete/Update/Get) List Items
Accessing List Data using the JavaScript Client OM
Using the SP2010 Client Object Model to update a list item How to – SharePoint 2010 – JS client object model and UI advancements

link|improve this answer
feedback

In SP2010 there is new client APIs that allow you to interact with SharePoint sites from JavaScript

SharePoint 2010 Client Object Model

JavaScript Class Library

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.