Click here to Skip to main content
15,884,388 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi
I am new to this , during run time i am getting object doesn't support property or method 'sticky footerbar'.

Please suggest me how to fix this issue, it is very helpful to me

in header of the HTML page added the

XML
<script type="text/javascript" src="jquery-1.6.2.js"></script>
    <script type="text/javascript" src="jquery-1.11.1.min.js"></script>
    <script type="text/javascript" src="jquery.stickyfooterbar.js"></script>

in footer section added the below code

<footer>
			<div id="stickyfooter">
				<div class="intended">
					<div id="stickyline">
						<h2>Get it! Scroll to the bottom</h2>
					</div>
					<ul>
						<li>
							<a href="https://github.com/defname/sticky-footer-bar">Visit the project on GitHub</a>
						</li>
						<li>
							or <a href="https://github.com/defname/sticky-footer-bar/archive/master.zip">download
							the repository as ZIP</a>
						</li>
					</ul>
				</div>
			</div>
			<p id="P1">
				© 2014 Bodo Akdeniz
			</p>
		</footer>


<script type="text/javascript" language="javascript">
        $(document).ready(function () {
            $('#stickyfooter').stickyfooterbar('#stickyline');
        });
		</script>
Posted
Comments
Sergey Alexandrovich Kryukov 15-May-15 2:59am    
There is no such property, that's it. Check up documentation, spelling, casing...
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900