Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. var myFrame = $("#description-frame").contents().find('body');
  2. myFrame.html('<textarea id="testowy_desc" rows="4" cols="50" style="border: 2px solid red;"></textarea>');
  3.  
  4. if ( $('#testowy_desc').length > 0 )
  5. {
  6. $('#testowy_desc').focus().trigger({ type : 'keypress', which : 75 });
  7. }
  8. else
  9. {
  10. alert('element not exist');
  11. }
  12.  
  13. <iframe id="description-frame" class="valid" frameborder="0">
  14. <html>
  15. <head>
  16. <meta content="text/html; charset=UTF-8" http-equiv="content-type">
  17. <style>body {background: #FFFFFF;margin: 0px;padding: 0px;text-align:left;font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif; font-size: 0.875em;}.desc{color:gray;} body.error { background-color: #EFDBD6;} body.valid { background-color: #F0FFC1; color : #468847; } P {margin-top:0;margin-bottom:0}a{text-decoration: none;color:#000}
  18. </style>
  19. </head>
  20. <body id="rte" class="valid">
  21. to jest testowy opis
  22. </p>
  23. </body>
  24. </html>
  25. </iframe>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement