jsFiddle toggle JavaScript and CSS panels? - jsfiddle

Is there a way to toggle JavaScript and CSS panels?

I'm afraid this isn't a feature of jsFiddle.
According to their keyboard shortcuts you can only toggle the sidebar (Control + Shift + ↑).

Related

How To Make Contenteditable Draggable and Resizable in VueJs

There is any way to make content editable to be drag-gable & Re-sizable without Plugin or with plugin in VueJs?
I will appreciate any views-Thanks.
I use Vue-Draggable, you can check out their github page here, see a demo here.

bootstrap datepicker: the arrow icons are not visible

I use bootstrap for the datepicker , the problem is that the arrow is not visble for next and previous month, as soon as I try to edit any CSS property of DOM side on Chrome, it works, it's like I did a refresh DOM . by against IE and firefox, the icons are visible.

Materialize Create and Open Modal

I wan't to create a Modal with Materialize and Open it with a Button click. I used the code from the Modal page but it is somehow not working. Maybe someone can help.
I know some guys posted a similar question but none of them is answering my question.
For the modal example to work with a button to trigger the modal you'll need initialize the button using JavaScript. Be sure that you have included both jQuery, and both JavaScript and CSS from materialize—see the getting started guide.
To initialize the modal (or all modals) you'll invoke the leanModal() method on it:
$(document).ready(function(){
$('.modal-trigger').leanModal();
});
The "href" attribute of .modal-trigger must specify the modal ID that wants to be triggered.
Example modal button:
<a class="waves-effect waves-light btn modal-trigger" href="#modal1">Click to open modal</a>
This button would open a modal with the id modal1.
See this code pen for a working example.

ckeditor + hide & show of contenteditable + unable to edit

crosspost:
http://ckeditor.com/forums/Support/inline-editor-div-contenteditable-when-loaded-hidden-doesnt-work.
when you try to attach ckeditor to hidden contenteditable and then make it visible the ckeditor is disabled & the div is contenteditable=false
adding below css did not help much
-webkit-user-modify: read-write;
any suggestions?
Could you show what you already tried? If contenteditable=false then editor is in readonly mode. Change the value of this attribute and editor will be editable if it can be initialised on hidden elements (I'm not sure about that).
If it cannot be initialised on hidden container - initialise it after showing it and destroy before hiding it. But again - contenteditable needs to be set to true.

Disabling iPhone keyboard when selecting an HTML textarea

I am trying to disable the iPhone keyboard for only some of the textAreas in an HTML document. This document is displayed in a UIWebView. I have tried the CSS webkit tags such as: -webkit-user-select:none; -webkit-touch-callout:none; -webkit-user-modify:none;. I have also tried the readonly property, but it does not suppress the keyboard, either. Is there any way to disable the keyboard for only certian text areas? I think users of my app will find it frustrating that the keyboard is popping up at inappropriate times.
do you use html for this? if yes you can use the disabled attribute <textarea name="mytextarea" cols="2" rows="2" disabled></textarea>