0
Help me to Fix the error?
3 odpowiedzi
0
Ashish Gupta
Go to HTML page.
At line 315 : remove this ; and add comma,
And at line 316 : remove this ; and save the code and run.
It's works fine.
or
try this :
in your html code,
$('.carousel').carousel({
interval : 3000, // change semicolon to comma
pause : 'hover' // remove semicolon
});
check this:
fixed code:
https://code.sololearn.com/Wj9ZpP515ecZ/?ref=app
+ 2
$('.carousel').carousel({
interval : 3000, // change semicolon to comma
pause : 'hover' // remove semicolon
});
+ 2
Ipang thank u..