I not into programing so I having some dificulting getting something to work. I've managed to come up with a working jquery that pulls a youtube playlist by its ID and displays it.
The code the holds the playlist is
var playListURL = 'http://gdata.youtube.com/feeds/api/playlists/PL60038DE2D1B1A21C?v=2&max-results=5&alt=json&callback=?';
Here is the full code.... http://jsfiddle.net/tqWxc/814/
Everytime I need to pull a diferent playlist I need to manually edit the code and chenage the playlist ID . what I want to be able to do is to create a form where a user puts the playlist ID -> submit -> display the playlist content
How could I acconplish this?