But unfortunately I can´t get it to work.
Here's my example site: www.rsdcl.klangklang.net
Here's the tutorial-video: https://youtu.be/ObLBJhU-uyA
Any help appreciated
Here's my example site: www.rsdcl.klangklang.net
Here's the tutorial-video: https://youtu.be/ObLBJhU-uyA
Any help appreciated
In the footer the final script is shown as
It omits the forward slash in the last line (should be </script>). It seems OK when that is corrected.
Frank
<script>
$( function() {
$( "#tabs" ).tabs();
} );
<script>
$( function() {
$( "#tabs" ).tabs();
} );
<script>
It omits the forward slash in the last line (should be </script>). It seems OK when that is corrected.
Frank
Hi Christof,
You are missing the slash in the closing script tag.
Change
<script>
$( function() {
$( "#tabs" ).tabs();
} );
<script>
To
<script>
$( function() {
$( "#tabs" ).tabs();
} );
</script>
You are missing the slash in the closing script tag.
Change
<script>
$( function() {
$( "#tabs" ).tabs();
} );
<script>
To
<script>
$( function() {
$( "#tabs" ).tabs();
} );
</script>
You got there before me Frank

Thank you guys for your help! But unfortunately no success
Anything else I could try???
Thanks again,
Christof
www.rsdcl.klangklang.net
Anything else I could try???
Thanks again,
Christof
www.rsdcl.klangklang.net
When I downloaded the website as it was when the first post was made, and changed that one item, it did work.
I think it would be helpful to provide a copy of the RSD file here.
Frank
I think it would be helpful to provide a copy of the RSD file here.
Frank
that's strange! I attached the rsd file now.
Hi Christof,
The closing bracket is missing from the opening script tag.
<script src="./js/jquery-ui.min.js"></script>
<script> src="./js/jquery-ui.min.js"></script>
The closing bracket is missing from the opening script tag.
<script src="./js/jquery-ui.min.js"></script>
<script> src="./js/jquery-ui.min.js"></script>
In fact the RSD file shows the following -
Simply removing the first '<script>' does the trick. The second line is correct as -
Frank
<script>
<script src="./js/jquery-ui.min.js"></script>
<script src="./js/jquery-ui.min.js"></script>
Simply removing the first '<script>' does the trick. The second line is correct as -
<script src="./js/jquery-ui.min.js"></script>
Frank
Frank Cook wrote:
In fact the RSD file shows the following -
Simply removing the first '<script>' does the trick. The second line is correct as -
Frank
In fact the RSD file shows the following -
<script>
<script src="./js/jquery-ui.min.js"></script>
<script src="./js/jquery-ui.min.js"></script>
Simply removing the first '<script>' does the trick. The second line is correct as -
<script src="./js/jquery-ui.min.js"></script>
Frank
Doh! Of course it is! That was the line that showed the error and I jumped ahead of myself

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.