Settings

		$('p').flapDisplay({
			speed: 55
		});


		$('input#flipButton').click(function () {
		
			if ($('input#nextString').val()) {
				$('p').flapDisplay('nextWord',$('input#nextString').val());
			}
 		});
		
		$('input#startButton').click(function () {
		
			$('p').flapDisplay('start');
			
		});
		
Split-flap display - on-demand flip
Place a string in the input field and press the button

New York

The plugin even remembers what
you've passed as strings
to it! Try the start button
after a couple of inputs!