summaryrefslogtreecommitdiff
path: root/demos/tizen-gray/widgets/searchbar.js
blob: c79973936951082bf44185070d4d0953ad479a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$( "#searchbar-demo-page" ).bind( "pageshow", function(){

	
	$( "#search1" ).bind( "input change", function(){
		var regEx = "";
		
		regEx = ".*" + $( "#search1" ).val();
		
		$("#searchbar-content p").each(function(){
			if ( $( this ).text().search(new RegExp(regEx)) != -1) {
				$( this ).show();
			}
			else {
				$( this ).hide();				
			}
		});
	});
	
	/*searchbar-content*/
});