Facebook
From essa, 2 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 83
  1. (function($)
  2.         {
  3.             $(document).ready(function()
  4.             {
  5.                 var button=$("<button></button>",
  6.                 {
  7.                     text: "KLIKNIJ MNIE!!!",
  8.                     css:
  9.                     {
  10.                         "backgroundColor":"#cad0ff",
  11.                         "border":"1px solid #000080",
  12.                         "color":"#000080",
  13.                         "padding":".5rem 3rem",
  14.                         "font":"bold 100%/1 verdana"
  15.                     }
  16.                 });
  17.                 $("article").append(button);
  18.             });
  19.         })(jQuery)