Guest User

text hightlight

a guest
Dec 31st, 2012
726
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 3.28 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>My Page</title>
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <style>
  7.         .highlight { background-color: yellow }
  8.     </style>
  9.     <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  10.     <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  11.     <script src="http://johannburkard.de/resources/Johann/jquery.highlight-4.closure.js"></script>
  12.     <script>
  13.     var text = $("#myset").text();
  14.     $( document ).on( "mobileinit", function(){
  15.         $.mobile.listview.prototype.options.filterCallback = function( text, searchValue ) {           
  16.             // only show items that *begin* with the search string
  17.             console.log(searchValue)
  18.             if(searchValue.length == 0){
  19.                 $('p').removeHighlight();
  20.             }
  21.             var myregexp = new RegExp(searchValue, "ig");
  22.             var matches = text.match(myregexp);
  23.             if(matches && text.match(myregexp).length){
  24.                 $('p').removeHighlight();
  25.                 $('p').highlight(searchValue);
  26.                 return false;
  27.             }else{
  28.                 return true;
  29.             }
  30.         };
  31.     });
  32.     </script>
  33.     <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
  34. </head>
  35. <body>
  36. <div data-role="collapsible-set" id="myset">
  37.     <div data-role="listview" data-filter="true">
  38.         <div class="collapsibleDirectory" data-role="collapsible">
  39.             <H3>Accounting</H3>
  40.             <p>Tyee Carr, Visiting professor<br />
  41.             Phone: <a href="tel:3605469264">360-546-9264</a><br />
  42.             Location: VCLS 308 A<br />
  43.             Email: <a href="mailto:[email protected]">[email protected]</a></p>
  44.  
  45.             <p>Jane Cote, Acedemic Director - College of Business<br />
  46.             Phone: <a href="tel:3605469756">360-546-9756</a><br />
  47.             Location: VCLS 308 D<br />
  48.             Email: <a href="mailto:[email protected]">[email protected]</a></p>
  49.  
  50.             <p>Claire Kamm Latham, Associate Professor<br />
  51.             Phone: <a href="tel:3605469757">360-546-9757</a><br />
  52.             Location: VCLS 308 Q<br />
  53.             Email: <a href="mailto:[email protected]">[email protected]</a></p>
  54.  
  55.             <p>Brian Routh, Faculty and IMA Faculty Advisor<br />
  56.             Phone: <a href="tel:3605469338">360-546-9338</a><br />
  57.             Location: VCLS 308 T<br />
  58.             Email: <a href="mailto:[email protected]">[email protected]</a></p>
  59.  
  60.             <p>Debra Sanders, Professor, Associate Director, Master of Program<br />
  61.             Phone: <a href="tel:3605469147">360-546-9147</a><br />
  62.             Location: VCLS 308 F<br />
  63.             Email: <a href="mailto:[email protected]">[email protected]</a></p>
  64.  
  65.             <p>Ben Kulp, Acedemic Coordinator<br />
  66.             Phone: <a href="tel:3605469551">360-546-9551</a><br />
  67.             Location: VCLS 308 B<br />
  68.             Email: <a href="mailto:[email protected]">[email protected]</a></p>
  69.  
  70.             <p>Mary Stender, Acedemic Coordinator<br />
  71.             Phone: <a href="tel:3605469751">360-546-9751</a><br />
  72.             Location: VCLS 308 C<br />
  73.             Email: <a href="mailto:[email protected]">[email protected]</a></p>
  74.         </div>
  75.     </div>
  76. </div>
  77. </body>
  78. </html>
Advertisement
Add Comment
Please, Sign In to add comment