in reply to Re^2: Adding Bootstrap to Shopping Cart in Perl ?
in thread Adding Bootstrap to Shopping Cart in Perl ?

Yep, the url was not good in the page of bootstrap!!

http://getbootstrap.com/dist/js/bootstrap.min.js
https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js

Check the CGI script above and add some print like this:
print "<script src='http://getbootstrap.com/dist/js/bootstrap.min.js'> +</script>";

Replies are listed 'Best First'.
Re^4: Adding Bootstrap to Shopping Cart in Perl ?
by glennpm (Novice) on Jan 04, 2016 at 22:07 UTC
    Thanks, For give my ignorance. So this statement below does an include of the bootstrap min .js file? I use use print to include external file references? print "<script src='http://getbootstrap.com/dist/js/bootstrap.min.js'></script>";
Re^4: Adding Bootstrap to Shopping Cart in Perl ?
by glennpm (Novice) on Jan 04, 2016 at 22:14 UTC
    Also, Do you know of example CGI <form> variables that passes the data to a .pl script and the perl script include the bootstrap css/.js references, then the .pl script output maybe a using bootstrap class references? It would be nice to see an actual .pl script using bootstrap classes. Thanks, Again :-)
        Bootstrap are CSS, so check their documentation, I'm on gsm, but include all files of my first post with html tags... all is important or their classes will not work. The order of files is important too.