0

I am using the Tiny slideshow in my asp.net page. It works fine in all the Browser and here is the LINK, But my problem starts when I include that page in my master page and display the same. the Jquery stop working in Internet explorer.

http://www.spareach.com/public/xtemp8.aspx?userid=22&AspxAutoDetectCookieSupport=1

I am tired a lot for this.

Can any one help me please.

Bhavik Goyal
  • 2,786
  • 6
  • 23
  • 42
  • 1
    I'm afraid it doesn't seem to work in Chrome or FF either. `TINY is not defined.` – anothershrubery Apr 28 '11 at 14:22
  • Is it possible that your other browsers are using a cached version of some dependency? I'd try clearing your cache in FF and Chrome and seeing if it continues to work there. – 3Dave Apr 28 '11 at 14:44

2 Answers2

1

your script interpreted by ASP.NET Session. the actual URL of file is http://www.spareach.com/lightbox3/script.js. if you put the absolute URL then they work fine. hope this helpful

  • Thanks... thats works fine now... Actually now i have made the Iframe to runat server and assigned the path in Codebehind... Thanks for your reply. – Bhavik Goyal Apr 29 '11 at 00:34
1

If you include that in another page, your relative link to the .js file is going to be invalid. So, your options are to make it absolute (http://www.something.com/folder/tiny.js) or to include the .js from the head or common document, if you use that structure.

bpeterson76
  • 12,918
  • 5
  • 49
  • 82