Click here to Skip to main content
15,888,579 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Android App Windows (NTLM) Authentication Pin
Colin Mullikin22-Jun-11 5:22
professionalColin Mullikin22-Jun-11 5:22 
Questiondocument.ready() and window.load() events don't fire Pin
benams21-Jun-11 4:41
benams21-Jun-11 4:41 
AnswerRe: document.ready() and window.load() events don't fire Pin
Not Active21-Jun-11 7:36
mentorNot Active21-Jun-11 7:36 
AnswerRe: document.ready() and window.load() events don't fire Pin
DaveAuld21-Jun-11 7:49
professionalDaveAuld21-Jun-11 7:49 
AnswerRe: document.ready() and window.load() events don't fire Pin
DaveAuld21-Jun-11 8:00
professionalDaveAuld21-Jun-11 8:00 
GeneralRe: document.ready() and window.load() events don't fire Pin
benams21-Jun-11 11:35
benams21-Jun-11 11:35 
AnswerRe: document.ready() and window.load() events don't fire [modified] Pin
Monjurul Habib21-Jun-11 12:12
professionalMonjurul Habib21-Jun-11 12:12 
AnswerRe: document.ready() and window.load() events don't fire PinPopular
AspDotNetDev21-Jun-11 15:56
protectorAspDotNetDev21-Jun-11 15:56 
A few notes / ideas:

  • Do not self-close your script tags when you include jQuery:
    <!-- Good -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
    <!-- Bad -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"/>
  • Be sure your proxy is not preventing jQuery from loading. Also, your browser may not want to load a local copy of jQuery.
  • Ensure you include jQuery before you run your script.
  • benams wrote:
    I place it between the head tags

    That makes me think you aren't using a script tag. Your script should be included in a script tag, the "type" should be set to "text/javascript", and the "language" should be set to "javascript". Also ensure you do NOT have runat="server" on your script tag.
  • Do not include your above JavaScript in the same script block you use to include jQuery.
  • Try running a simple alert("hello"); without including jQuery, just to see if your JavaScript is running.
  • View the source of your page to be sure the rendered HTML is correct.
  • What works in one browser may not work in another. Try using different browsers.
  • If you could include your ENTIRE page, that would be of use.


GeneralRe: document.ready() and window.load() events don't fire Pin
vbmike22-Jun-11 9:48
vbmike22-Jun-11 9:48 
AnswerRe: document.ready() and window.load() events don't fire Pin
AspDotNetDev22-Jun-11 9:57
protectorAspDotNetDev22-Jun-11 9:57 
GeneralRe: document.ready() and window.load() events don't fire Pin
vbmike22-Jun-11 12:02
vbmike22-Jun-11 12:02 
Questionreading xml in jquery Pin
Ali Al Omairi(Abu AlHassan)19-Jun-11 23:06
professionalAli Al Omairi(Abu AlHassan)19-Jun-11 23:06 
AnswerRe: reading xml in jquery Pin
Ali Al Omairi(Abu AlHassan)19-Jun-11 23:35
professionalAli Al Omairi(Abu AlHassan)19-Jun-11 23:35 
Questionlearning Jquery Pin
benams14-Jun-11 22:41
benams14-Jun-11 22:41 
AnswerRe: learning Jquery PinPopular
Pete O'Hanlon14-Jun-11 22:57
mvePete O'Hanlon14-Jun-11 22:57 
AnswerRe: learning Jquery Pin
ajhampson16-Jun-11 5:29
ajhampson16-Jun-11 5:29 
GeneralRe: learning Jquery Pin
Atulkryadav16-Jun-11 8:15
Atulkryadav16-Jun-11 8:15 
AnswerRe: learning Jquery Pin
Not Active16-Jun-11 10:20
mentorNot Active16-Jun-11 10:20 
AnswerRe: learning Jquery Pin
berba17-Jun-11 3:00
berba17-Jun-11 3:00 
AnswerRe: learning Jquery [modified] Pin
Monjurul Habib21-Jun-11 12:03
professionalMonjurul Habib21-Jun-11 12:03 
AnswerRe: learning Jquery Pin
thatraja22-Jun-11 15:59
professionalthatraja22-Jun-11 15:59 
AnswerRe: learning Jquery Pin
Shameel1-Jul-11 1:57
professionalShameel1-Jul-11 1:57 
Questionobject expected Pin
Ankit Aneja11-Jun-11 21:21
Ankit Aneja11-Jun-11 21:21 
QuestionRe: object expected Pin
DaveAuld11-Jun-11 21:30
professionalDaveAuld11-Jun-11 21:30 
AnswerRe: object expected Pin
Ankit Aneja12-Jun-11 0:22
Ankit Aneja12-Jun-11 0:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.