Advertisement
vishnu3006

jsval

Dec 1st, 2011
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function() {
  2.   $("#edit-folks-list").change(function() {
  3.  
  4.  //alert("hello world " + $(this).find(":selected").text());
  5.  
  6.  
  7.  $targetLangIndex = $(this).find(":selected").text();
  8.  $chunks = explode("_", $targetLangIndex);
  9.  $idChunk =  $chunks[1];
  10.  alert("hello world " +   $idChunk);
  11.  
  12.  });
  13. });
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement