Find parent node in DOM
Every HTML element in DOM has reference to its parent node. With simple iteration it's possible to traverse up to the requested element. If this loop is wrapped within a function, you will get a very...
View Articleconsole.log in IE8
Why IE8 displays error for console.log line in JavaScript? Well, developer tools should be activated if you intend to use console.log command. Just press F12 (to turn on developer tools) and F5 (to...
View ArticleJavaScript drag and drop plus content shift
Demo is based on REDIPS.drag JavaScript library with enabled shift drop option. After element is dropped to the cell, other elements will be shifted to make room. Animation is optional and can be...
View ArticleJavaScript checkbox toggle
Demo shows how to toggle or clear a checkbox group. On button click, all checkboxes in HTML table will change their state. Checkbox group can be defined with any container so it's not necessary to use...
View ArticleREDIPS.drag documentation - Appendix A
Here is list of keywords (mostly class names) used in REDIPS.drag library. Id of drag container(s) or table cell class names should be named properly to achieve needed functionality like cloning DIV...
View ArticleMerge and split table cells with JavaScript
REDIPS.table is a small JavaScript library which enables interactively or through script merging and splitting table cells. REDIPS.table.onmousedown() public method will activate onmousedown event...
View ArticleREDIPS.table documentation
REDIPS.table is a JavaScript library which enables dynamically merging and splitting table cells. Here you will see a list of public properties and methods contained in REDIPS.table library....
View ArticleMigration guide for REDIPS.drag version 5+
REDIPS.drag version 5 has major name changes in properties, methods and event handlers. Here you will find listed old and new names so migration to version 5 should not be a problem. Main intention for...
View ArticleInput text fields and saveContent() modification in REDIPS.drag
Post shows modification of REDIPS.drag.saveContent() method. I got a lot of questions regarding how to save values from input fields (embedded in DIV element). Source below will search for input text...
View ArticleREDIPS.drag version 5.1 (what's new)
To ensure that REDIPS.drag library will work with any other JavaScript framework, it was necessary to rename all class names. The main issue was conflict with latest version of Bootstrap and "mark"...
View Article