I am prototyping a web app idea i have I have a jsFiddle set up to show you. (crude prototype)
Two of my functions work perfect.
However once the options appear the next function doesn't work when called..
Perhaps i am being blind? i have had a 8hour coding session today.
But once an option is selected the container holding the options should disappear
function begin(){
$( this ).hide();
$(".center-logo").hide(),
$(".clapper").show(),
$(".clapper").text("tap to chose option")
}
function movieChoice(){
$("#film-list").fadeIn('slow'),
$(movieList.movies).each(function(index){$("#movies").append('<li class="selector" id="'+this.rating+'">' + this.name + '</li>');});
}
function movieSelector(){
$("#film-list").fadeOut('slow')
$(".clapper").hide()
$(".date").show()
}
$("#begin").on( "swiperight", begin)
$(".clapper").on( "tap", movieChoice)
$(".selector").on( "tap", movieSelector)