Using Sharepoint 2007 Have JQuery and SPServices.js available.
I need to be able to gather profile pictures (or just the URL whichever is easier) from a users MySite.
It will be a dynamic list of users and their Windows Login will be in the list. The requirements only allow me to use HTML which limits what kind of code I can use.
I know I can gather the current users profile picture with this javascript implementing JQuery and SPServices.js
<script type="text/javascript" src="http://.../jquery/jquery.js"></script>
<script type="text/javascript" src="http://.../jquery/jquery.SPServices.js></script>
<script type="text/javascript">
$().SPServices.SPGetCurrentUser({fieldName: "Picture", debug: false});
</script>
I just wanted to know if anyone knew how to gather the pictures from a list of multiple users.
Sorry im a newbie with SharePoint.
Thanks!