Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have four php pages:

  1. header.php
  2. demo1.php
  3. demo2.php
  4. demo3.php

I am including header.php in every page i.e demo1.php, demo2.php and demo3.php. I included common JavaScript required for demo1.php, demo2.php and demo3.php in header.php.

header.php code:

<script type="text/javascript" src="jscript/jquery.js"></script>
<script type="text/javascript" language="javascript">
$(function(){
     $("#btn1").click(function(){
       console.log("btn1 clicked");
      });
     $("#btn2").click(function(){
      console.log("btn2 clicked");
     });

});
</script>

btn1 and btn2 elements are not declared in header.php, but they are declared in included pages like demo1.php, demo2.php and demo3.php.

demo1.php code:

 <?php include "header.php";?>
 <input type="button" id="btn1" value="check"/>
 <input type="button" id="btn2" value="check"/>

This demo1.php page works in all browsers except in IE.

In IE it showing error Object expected at $("btn1").click(function(){});.

Can any one help me achieving this problem?

share|improve this question
1  
Did you have the console open? If the console isn't open, IE will fail on console.log – Kevin B Oct 19 '12 at 15:23
As @KevinB said there is no console object available unless you open the developer tools.. So try using alert instead of console.log or instantiate the console object on your page – Sushanth -- Oct 19 '12 at 15:26
for console i am using this code if(!window.console){console.log("btn1 clicked");} – Ramesh Paul Oct 19 '12 at 15:26
I guess the console is open, otherwise you can't notice the error. – pimvdb Oct 19 '12 at 15:26
Yeah that's what i expected, i didn't think console was the problem because it doesn't match the error that is happening. does removing type="text/javascript" language="javascript" make any difference? – Kevin B Oct 19 '12 at 15:28
show 5 more comments

2 Answers

up vote 0 down vote accepted

You may have an implicit semicolon or append at this line:

$("#btn1").click(function(){

It could also be an issue caused by the base element.

share|improve this answer

What version of IE are you using? There is no console.log function in IE7 for e.g.

share|improve this answer
3  
There is, it just doesn't exist until you open the console. (F12) – Kevin B Oct 19 '12 at 15:24
IE9 has one (at least). @KevinB - I love IE. It's sense perfect make. – Jared Farrish Oct 19 '12 at 15:24
2  
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Aleks G Oct 19 '12 at 15:24
And IE8 IIRC, IE6 and 7 definitely do not. – Kevin B Oct 19 '12 at 15:25
@KevinB - Yeah, I couldn't remember IE8's console status. I've used a dummy just in case for a long time, anyhow. – Jared Farrish Oct 19 '12 at 15:26
show 5 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.