Here is a sample HTML snippet:
<div id="bigtext" style="width: 300px">
<div>The mysterious</div>
<div>BIGTEXT</div>
<div>feature exclusively</div>
<div>encapsulated on screen</div>
</div>
Without any CSS enabled to avoid interference. Along with this, there is a simple JavaScript file containing the following code:
$(document).ready(function() {
$("#bigtext").bigtext();
});
I have also included bigtext.js in the HTML. Both scripts are being successfully loaded as confirmed through an alert notification. However, the text does not resize accordingly. I attempted using FitText as well, but no luck. Despite closely following the example provided on the website, the issue persists. Any suggestions?