how i can join to script from tow pages in one pages?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wiliam
    New Member
    • Oct 2011
    • 1

    how i can join to script from tow pages in one pages?

    I have this tow scripts


    Code:
    	<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
    	<title>IBRAHIM ALZAGLAWAN</title>
    	<link rel="stylesheet" href="css/image-slideshow-5.css" type="text/css">
    	<script type="text/javascript" src="js/image-slideshow-5.js">
    	</script>
    
    
    
    
    
    
    
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>ibrahim alzaglawan </title>
    <link href="css/horizontal.css" rel="stylesheet" type="text/css" />
    <link href="css/vertical.css" rel="stylesheet" type="text/css" />
    
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
    <script type="text/JavaScript">
    $(document).ready(function () {
    
    // Fix IE
        $("#nav-h li,#nav-v li").hover(
        function () { $(this).addClass("iehover"); }, 
    	function () { $(this).removeClass("iehover"); }
    	);	
    	
    // Effect
    $("#nav-h li,#nav-v li").hover(function () {
        $(this).find('ul:first').css({visibility: "visible", display: "none"}).toggle('fast'); }, 
    	function () {
        $(this).find('ul:first').css({visibility: "hidden"});
    	});
    
    });
    </script>
    Last edited by Rabbit; Jul 22 '13, 03:49 PM. Reason: Please use code tags when posting code or formatted data.
Working...