HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/kms.komma.pro/wwwroot/public/js/editor.js
var $editor = $('.s_editor');

$editor.each(function()
{
    console.log('found..');

    if($editor.trumbowyg('html') != '')
    {
        $(this).siblings('.placeholder').html('');
    }
});

$editor.trumbowyg('focus');

// On focus
$editor.focus(function(){
        console.log('focus YEAH!');
        // Focus
        $(this).parent().addClass('focus');
    }
).keydown(function(){
        // Empty placeholder
        $(this).siblings('.placeholder').html('');
    }
);
$editor.blur(function(){
        // Blur
        $(this).parent().removeClass('focus');

        // Restore placeholder if field is empty
        var label = $(this).attr('data-label');
        if($editor.trumbowyg('html') != '')
        {
            $(this).siblings('.placeholder').html(label);
        }
    }
);