javascript - twitter Bootstrap nav-bar not working -


i using twitter bootstrap nav bar. trying make nav bar behave mobile devices(i.e when screen size small).

nav-collapse works fine in jsfiddle. same code, in browser when reduce window size not work. don't know seems problem. please me.

edit : included content of head

    <meta http-equiv="content-type" content="text/html; charset=utf-8">      <link rel="shortcut icon" href="favicon.ico">      <link rel="stylesheet" type="text/css" media="screen" href="css/screen.css" />     <link rel="stylesheet" type="text/css" media="screen" href="jquery-ui.css" />     <script src = "jquery-1.9.1.js" type = "text/javascript"></script>     <script src = "jquery-ui.js" type = "text/javascript"></script>     <script src = "jquery.validate.js" type = "text/javascript"></script>     <script src = "1.3.1.js" type = "text/javascript"></script>       <link rel="stylesheet" type="text/css" href="bootstrap-wysihtml5.css"/>     <link rel="stylesheet" type="text/css" href="http://jhollingworth.github.com/bootstrap-wysihtml5/lib/css/bootstrap.min.css"></link>      <script src = "bootstrap.min.js" type = "text/javascript"></script>      <link rel="stylesheet" type="text/css" href="http://jhollingworth.github.com/bootstrap-wysihtml5/lib/css/prettify.css"></link>     <link rel="stylesheet" type="text/css" href="http://jhollingworth.github.com/bootstrap-wysihtml5/src/bootstrap-wysihtml5.css"></link>      <link rel="stylesheet" type="text/css" href="css/job.css"/>     <link rel="stylesheet" type="text/css" href="css/font-awesome.min.css"/> 


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -