$(function () { tinymce.init({ selector: '#contenteditor', height: 500, menubar: false, plugins: [ 'advlist autolink lists link image charmap print preview anchor textcolor', 'searchreplace visualblocks code fullscreen', 'insertdatetime media table paste code help wordcount' ], toolbar: 'undo redo | formatselect | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat | help' }); $("#cookie_consent").button({ label: "OK" }).click(function () { $(this).parent().parent().hide(); $.cookie("cookie_consent", JSON.stringify(true), {path: '', expires: 1000}); }); var param = JSON.parse($.cookie("cookie_consent")); if (param !== null) { $.cookie("cookie_consent", JSON.stringify(true), {path: '', expires: 1000}); } else { $("#footer").show(); } $('#chartdiv').html(''); json=$('#testresult').html(); $.test('chartdiv',json,'test'); });