Results 1 to 5 of 5

Thread: Crawler script stops easyslider script from working...

  1. #1
    Join Date
    Aug 2010
    Posts
    45
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default Crawler script stops easyslider script from working...

    Hi I am new to the forum... I've been using the crawler js script on a couple of sites flawlessly...by far the easiest, smoothest no gap image marquee out there, but I just tried to add it to a site with easyslider 1.7 (JQuery) in place and it stops the slider-script from working? Any ideas...?

    Lasa2

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    For us to help, we'll need to have a link for your page.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Aug 2010
    Posts
    45
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default

    Sorry about that..
    http://threefooter.com/des1/
    this is a testing ground for me.

    Thanks,

    lasa2

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Only seems to be a problem in IE. If you make a valid URL DOCTYPE, or the HTML 5 DOCTYPE as the first thing in your page, that should take care of it, change:

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Untitled Web Page</title>
    <meta name="generator" content="Antenna 3.0">
    <meta http-equiv="imagetoo . . .
    to (HTML 5):

    Code:
    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Untitled Web Page</title>
    <meta name="generator" content="Antenna 3.0">
    <meta http-equiv="imagetoo . . .
    or to (closest comparable valid URL DOCTYPE):

    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">
    <title>Untitled Web Page</title>
    <meta name="generator" content="Antenna 3.0">
    <meta http-equiv="imagetoo . . .
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Aug 2010
    Posts
    45
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default

    Thanks a ton John... what an awesome solution!
    Worked like a champ!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •