JQuery Autocomplete & Classic ASP -


i'm frustrated heck inexplicable! code works:

<!doctype html> <html lang="en"> <head>   <meta charset="utf-8">   <title>autocomplete demo</title>   <link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css">   <script src="//code.jquery.com/jquery-1.10.2.js"></script>   <script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script> </head> <body>  <label for="autocomplete">select programming language: </label> <input id="autocomplete">  <script> $( "#autocomplete" ).autocomplete({   source: [ "c++", "java", "php", "coldfusion", "javascript", "asp", "ruby" ] }); </script>  </body> </html> 

but when place necessary code in page, doesn't work!! i've ensured jquery loads once , moved of code top bottom , nothing works! there else may have missed? here's line of code should work (maybe in here stops it?)

<input id="dept" name="dept" type="text" class="rounded" placeholder="e.g. production" autocomplete="off" required> 

has else come across such issues?


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -