Link functions and search engines.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Simon Wigzell

    Link functions and search engines.

    I generate my webpages from a database. A good many of my links are popup
    links. For convenience I am using a javascript function to pop up the window
    e.g.

    popInternalWind ow("Home");

    popInternalWind ow(pagename)
    {
    popupString = "<%=session("Do mainName")%>" = "/" + pagename + ".htm";
    pagename = window.open(pop upString,pagena me,'[parameters]');
    }

    There is nothing in my code for a search engine to follow and naturally I
    would like the search engines to index the entire site. If I was to have a
    table with visibility turned off containing all of my lings as regular links
    e.g.

    <table style="visibili ty:hidden">
    <tr><td>
    <a href="[full link name1]">Home</a>
    <a href="[full link name2]">Products</a>
    ..
    ..
    ..
    </td></tr>
    </table>

    would the search engines follow those or are they designed to ignore
    non-visible html?
    If not, is there any other way of doing it other than not using a function
    for the popups?



  • David Dorward

    #2
    Re: Link functions and search engines.

    Simon Wigzell wrote:

    <snip ugly popup code>
    [color=blue]
    > would the search engines follow those or are they designed to ignore
    > non-visible html?[/color]

    No, no and its not HTML.

    To follow window.open functions the bot would have to be designed so it can
    process JavaScript. It isn't designed to do so. It isn't designed to ignore
    it either, it just can't cope.
    [color=blue]
    > If not, is there any other way of doing it other than not using a function
    > for the popups?[/color]

    Use a sane function for popups[1]
    * http://jibbering.com/faq/#FAQ4_24
    * http://www.allmyfaqs.com/faq.pl?Console_window

    [1] Better yet - don't use popups, they are almost always a bad design
    decision

    --
    David Dorward <http://dorward.me.uk/>

    Comment

    • Simon Wigzell

      #3
      Re: Link functions and search engines.


      "David Dorward" <dorward@yahoo. com> wrote in message
      news:bqtfdr$6ks $2$8300dec7@new s.demon.co.uk.. .[color=blue]
      > Simon Wigzell wrote:
      >
      > <snip ugly popup code>
      >[color=green]
      > > would the search engines follow those or are they designed to ignore
      > > non-visible html?[/color]
      >
      > No, no and its not HTML.
      >
      > To follow window.open functions the bot would have to be designed so it[/color]
      can[color=blue]
      > process JavaScript. It isn't designed to do so. It isn't designed to[/color]
      ignore[color=blue]
      > it either, it just can't cope.
      >[color=green]
      > > If not, is there any other way of doing it other than not using a[/color][/color]
      function[color=blue][color=green]
      > > for the popups?[/color]
      >
      > Use a sane function for popups[1]
      > * http://jibbering.com/faq/#FAQ4_24
      > * http://www.allmyfaqs.com/faq.pl?Console_window
      >
      > [1] Better yet - don't use popups, they are almost always a bad design
      > decision
      >
      > --
      > David Dorward <http://dorward.me.uk/>[/color]

      Thanks, but my question was about whether search engines would find links
      inside a table with "visible = hidden", I wasn't asking your opinion about
      popup links!


      Comment

      • David Dorward

        #4
        Re: Link functions and search engines.

        Simon Wigzell wrote:
        [color=blue]
        > Thanks, but my question was about whether search engines would find links
        > inside a table with "visible = hidden", I wasn't asking your opinion about
        > popup links![/color]

        What? Oh. <Rereads.> Ah.

        Maybe. Maybe not. They might consider it spamming.

        Either way - not using broken JavaScript in the first place will fix the
        problem for any user agent which can't handle JavaScript (You know that
        about half a dozen security flaws were found in the scripting engine in
        MSIE last week and that its been recomended that IE users keep scripting
        turned off until they are patched?
        <http://www.theregister .co.uk/content/55/34186.html>)

        --
        David Dorward <http://dorward.me.uk/>

        Comment

        • David Dorward

          #5
          Re: Link functions and search engines.

          Simon Wigzell wrote:
          [color=blue]
          > Thanks, but my question was about whether search engines would find links
          > inside a table with "visible = hidden", I wasn't asking your opinion about
          > popup links![/color]

          What? Oh. <Rereads.> Ah. You fooled by asking a SEO/CSS question in c.l.j :)

          Maybe. Maybe not. They might consider it spamming.

          Either way - not using broken JavaScript in the first place will fix the
          problem for any user agent which can't handle JavaScript (You know that
          about half a dozen security flaws were found in the scripting engine in
          MSIE last week and that its been recomended that IE users keep scripting
          turned off until they are patched?
          <http://www.theregister .co.uk/content/55/34186.html>), its recomended not to
          use JavaScript in a way which can't degrade gracefully.

          --
          David Dorward <http://dorward.me.uk/>

          Comment

          • Dr John Stockton

            #6
            Re: Link functions and search engines.

            JRS: In article <uRoAb.577883$6 C4.133087@pd7tw 1no>, seen in
            news:comp.lang. javascript, Simon Wigzell <simonwigzell@s haw.ca> posted
            at Sat, 6 Dec 2003 18:03:06 :-[color=blue]
            >
            > would the search engines follow those or are they designed to ignore
            >non-visible html?[/color]

            If those are in fact real, visible, pages, then you can link to them all
            from a new page not intended for humans to see, and link to that page
            from a well-known page in an inconspicuous manner that robots will
            follow.

            Otherwise, will the engines be able to get a meaningful index entry to
            display?

            --
            © John Stockton, Surrey, UK. ?@merlyn.demon. co.uk Turnpike v4.00 IE 4 ©
            <URL:http://jibbering.com/faq/> Jim Ley's FAQ for news:comp.lang. javascript
            <URL:http://www.merlyn.demo n.co.uk/js-index.htm> JS maths, dates, sources.
            <URL:http://www.merlyn.demo n.co.uk/> TP/BP/Delphi/JS/&c., FAQ topics, links.

            Comment

            • Thomas 'PointedEars' Lahn

              #7
              Re: Link functions and search engines.

              Simon Wigzell wrote:
              [color=blue]
              > [OjE borken fullquote crap][/color]

              You may want to read http://www.allmyfaqs.com/faq.pl?How_to_post
              [color=blue]
              > Thanks, but my question was about whether search engines would find links
              > inside a table with "visible = hidden",[/color]

              The Magic Eight Ball says: Unlikely.
              [color=blue]
              > I wasn't asking your opinion about popup links![/color]

              This is a discussion group, (paid) support forums are elsewhere.


              PointedEars

              Comment

              Working...