Jump to content

noscript help


toolman

Recommended Posts

Hi,

 

I have the following javascripts in the body of my page, just below the </body> tag.

 

I want to ask how I can set it up to use <noscript> tags. Can anyone help me out?

 

Thanks

 

<script type="text/javascript" src="public/js/fancydropdown.js"></script> 
<script src="public/js/jquery.bxSlider.min.js" type="text/javascript"></script> 
<script src="public/js/jquery.easing.1.3.js" type="text/javascript"></script> 
<script type="text/javascript">
    $(document).ready(function(){
        $('#slider1').bxSlider({
            easing: 'easeOutBounce',
            speed: 1500,
		auto: true,
		mode: 'vertical',
		infiniteLoop: true, 
		controls: true,
		autoStart: true,
		pause: 3000
        });



	$('#slider2').bxSlider({
            easing: 'easeOutBounce',
            speed: 1500,
		auto: true,
		mode: 'horizontal',
		infiniteLoop: true, 
		controls: true,
		autoStart: true,
		pause: 5000
        });
    });
</script>

Link to comment
Share on other sites

noscript tags are used to execute html when javascript is disabled or otherwise not available.  You cannot do the same thing with pure html as you can with javascript...otherwise there would be no point in using javascript.  What you need to ask yourself is: "If the user has javascript disabled, what static html content do I want my user to see instead?" 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.