MDBootstrap UI Kit Pro Advanced

MDBootstrap UI Kit Pro Advanced 7.1.0

No permission to download
anne Sergeant Major of the Army
Staff member
Moderating
badge id 33 2000 Resources badge id 29 50 Resources badge id 65 8,000 Reaction Score badge id 64 5,000 Reaction Score
Jul 6, 2020
3,891
10,148
$2,069
anne submitted a new resource:

MDBootstrap 5 PRO (MDB5) - Standard - MDBootstrap

Package included:

  • Latest Bootstrap 5 with plain, vanilla JavaScript with 5000+ components
  • Material Design 2.0
Features & benefits of MDB PRO:





READ (IMPORTANT):

This version contains only the ESSENTIAL for MDB to work well and with all its features, it does not contain all the files like the original version, for example each plugin separately. (Yes they are...

Read more about this resource...
 
Last edited by a moderator:
thanks,

maybe it's just me but at least tabs don't seem to be working. https://mdbootstrap.com/docs/standard/navigation/tabs/

EDIT: yeah, it was just me ? thanks for the release again

EDIT #2: Felt like contributing and wrote a mdb pro documentation bypasser userscript:


Code:
// ==UserScript==
// @name         MDBootstrap pro docs bypasser
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  bypasses mdbootstrap pro documentation restrictions
// @author       TheSparta
// @match        *://mdbootstrap.com/docs/*
// @icon         https://www.google.com/s2/favicons?domain=tampermonkey.net
// @grant        none
// @require      https://code.jquery.com/jquery-3.6.0.min.js
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('load', function() {
        $('body').find('a[aria-controls^="example"]').map(function(idx, val) {
            $(val).attr('data-mdb-toggle', 'collapse');
            $(val).attr('href', '#' + $(val).attr('aria-controls'));
            $(val).removeAttr('data-mdb-target');
        });
    });
})();
 
Last edited:
Back
Top