Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $(".cookieul").on("click",function(){
  2.  
  3.  
  4. var a ='';
  5. var myCookies = [];
  6. var newValue = $(".client option:selected").text();
  7. a += newValue;
  8.  
  9.  
  10. myCookies.push(a);
  11.  
  12. $.cookie("example", JSON.stringify(myCookies), { expires: 7 });
  13.  
  14.  
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement