I have a big problem and i need your help.
My application is with JSF and rich faces. I have a list of Image in my model (imageModel):
import java.awt.Image;
List<Image> liste_images = new ArrayList<Image>()
And i have to play them one by one (every 3 seconds one of them is display ) in the same place.
How can i do that with J Query ? I must send the list of image to the java Script and then display them ?
Please some help!