Guest User

Untitled

a guest
Dec 5th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.50 KB | None | 0 0
  1. $('#membersearch').keypress(function(e) {
  2.     var membersearchvalue=encodeURIComponent(document.getElementById("membersearch").value)
  3.     if(e.which == 13) {
  4.                 var iframe = $('<iframe width="600px" height="500px" style="border:none"></iframe>');
  5.                 iframe.attr('src', 'profile.php?username='+membersearchvalue);
  6.        
  7.                 var x = $('$<div title="View Profile"></div>')
  8.                 x = iframe.append(x);
  9.                 x = x.dialog({ width: 650 });
  10.                
  11. }
Add Comment
Please, Sign In to add comment