Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <textarea class="content">
  2. [shortcode1 param1=test param2=john]
  3. [shortcode2 param1=test param2=john]
  4. [shortcode1 param1=john param2=exchange]
  5. </textarea>
  6.  
  7. <textarea class="content">
  8. [shortcode1 newparam1=test newparam2=john]
  9. [shortcode2 param1=test param2=john]
  10. [shortcode1 newparam1=john newparam2=exchange]
  11. </textarea>
  12.  
  13. $(".content").text($(".content").text().replace("param1", "newparam1"));
  14. $(".content").text($(".content").text().replace("param2", "newparam2"));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement