problem with multiselect jquery plugin

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • balu k
    New Member
    • Sep 2013
    • 3

    problem with multiselect jquery plugin

    hi...,
    iam using jquery multiselect plugin in my application when the page is loading not properly the pluging is laoded correctly but page loads properly plugin not laoded propelry i dnt know what to do iam getting confused....!

    please help me out from these problem..
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    sounds like a conflict between different scripts.

    Comment

    • balu k
      New Member
      • Sep 2013
      • 3

      #3
      Originally posted by Dormilich
      sounds like a conflict between different scripts.
      so how to solve it what i need to do for it....!

      Comment

      • Dormilich
        Recognized Expert Expert
        • Aug 2008
        • 8694

        #4
        with the information given, how should I know?

        anyways, have a look at the error console (F12). you might find some clues there.

        Comment

        • balu k
          New Member
          • Sep 2013
          • 3

          #5
          Originally posted by Dormilich
          with the information given, how should I know?

          anyways, have a look at the error console (F12). you might find some clues there.
          Code:
          <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
             "http://www.w3.org/TR/html4/loose.dtd">
          
          <html>
              <head>
                  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
                  <META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, no-store, must-revalidate">
          		<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
          		<meta http-equiv="expires" content="FRI, 13 APR 1999 01:00:00 GMT">
                  
                      <title> Management</title>
          			
          	<link rel="stylesheet" type="text/css" href="C:\Users\BK5005882\Desktop\dropdown\jquery.multiselect.css"/>
          	<link rel="stylesheet" type="text/css" href="C:\Users\BK5005882\Desktop\dropdown\jquery-ui.css"/>
          	<script type="text/javascript" src="C:\Users\BK5005882\Desktop\dropdown\jquery-1.7.1.js"></script>
          	<script type="text/javascript" src="C:\Users\BK5005882\Desktop\dropdown\jquery-ui.min.js"></script>
          	<script type="text/javascript" src="C:\Users\BK5005882\Desktop\dropdown\jquery.multiselect.js"></script>
          	<script type="text/javascript" src="C:\Users\BK5005882\Desktop\dropdown\jquery.multiselect.min.js"></script>
          	<script type="text/javascript" src="C:\Users\BK5005882\Desktop\dropdown\jquery-1.3.1.min.js"></script>
          			
              </head>
          	<script type="text/javascript">
          	$(function(){
             $("#1844").multiselect(); 
          });
          </script>
              <body>      
          hai team success
          </body>
          </html>


          see this code and suggest me please....!
          Last edited by Rabbit; Sep 23 '13, 03:32 PM. Reason: Please use [CODE] [/CODE] tags when posting code.

          Comment

          • Dormilich
            Recognized Expert Expert
            • Aug 2008
            • 8694

            #6
            - you have included 2 versions of jQuery,
            - 2 versions of jQuery.multisel ect.
            - the paths to the scripts are with luck working (best use a relative path).
            - IDs must not start with a number (id="1844" is invalid),
            - and IDs you reference should exist in the document.

            Comment

            Working...