MDBootstrap UI Kit Pro Advanced

MDBootstrap UI Kit Pro Advanced 7.1.0

Register or Log in for Free Download
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:
Thank in advance. 👍
 

This member @mandavola contributed to the discussion at post #13 with a short message.

Thank
 
Is this the latest version? But thank you for sharing, it makes me happy
 

This member @madara2002 contributed to the discussion at post #17 with a short message.

thanks man
 

This member @turis contributed to the discussion at post #18 with a short message.

ty broo
 

This member @azakura014 contributed to the discussion at post #19 with a short message.

thank you
 

This member @@mail.ua contributed to the discussion at post #20 with a short message.

Thanks!
 
Back
Top