Problem using 2 jquery files in 1 file
- <script type="text/javascript" src="js/jquery.js">
- </script>
- <script type="text/javascript" src="js/jquery.lightbox-0.5.js">
- </script>
- <link rel="stylesheet" type="text/css" href="css/jquery.lightbox-0.5.css" media="screen" />
- <script type="text/javascript">
- $(document).ready(function() {
- $('a.lightbox').lightBox();
- });
- });
- </script>
- <script type="text/javascript" src="jquery-1.8.2.min.js">
- </script>
- <script type="text/javascript" src="jquery.cycle.all.js">
- </script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('#slider').cycle({
- fx: 'scrollHorz',
- next: '#next',
- prev: '#previous'
- });
- })
Problem using 2 jquery files in 1 file
i am a beginner with javascript and jquery, and i ran into a problem where i can only get 1 of the scripts to work in 1 file. (carousel and lightbox)
working on a project, plz need help urgently