Posts

Showing posts from February, 2021

Best JavaScript rich text editor frameworks in 2025

Image
TinyMce Editor Javascript When it comes to popular JavaScript rich text editor frameworks in 2025, a few stand out due to their features, flexibility, and broad adoption across platforms. Here’s a breakdown of the most widely used and recommended editors: 1. TinyMCE One of the most popular and widely adopted rich text editors, TinyMCE is used by major companies like WordPress, Shopify, and Squarespace. It offers extensive formatting options, media embedding, and cross-browser compatibility. It also supports over 50 plugins, making it highly customizable for various use cases. 2. CKEditor CKEditor is another top contender, known for its advanced features, including collaboration tools, image handling, and real-time editing. With its long-standing reputation and widespread use by companies like IBM and Microsoft, CKEditor is particularly powerful for projects needing high flexibility and performance. 3. Quill Quill is favored for its lightweight, clean design and simple API.

How To Create An HTML Input Date & Time In React

Image
html datetime in react The thing about HTML 5 is that it does have some features that work from different browsers and the other doesn't, the obvious element that is really useful is the HTML input type datetime-local. It works perfectly on Chrome, but unfortunately doesn’t work on Firefox and Safari, if this happened only on an internet explorer or something older, i wouldn’t bother, but Firefox or safari is a major browser with a huge amount of users, so it is something that we need to support in other for our app to be function. So here’s what I came up with using a combination of HTML type date and html type time to create a single react component as a replacement of datetime-local. Here's the full example code on Code Sandbox so you can play with: FULL CODES & DEMO . The idea is just to create a combination of input date and input type which is supported by All major browsers, so there’s nothing fancy here. There’s already a react-datetime library but it doesn’t wo

Popular posts from this blog

ERROR 1348 Column Password Is Not Updatable When Updating MySQL Root Password

How To Create Spring Boot Project Using Netbeans

How To Connect SSH Using PEM Certificate On Windows