Announcement

Collapse
No announcement yet.

SEK2 (Search Engine Killer) and some JavaScript

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    SEK2 (Search Engine Killer) and some JavaScript



    Sure. Call it from a js file and reference it via the copyright. If it
    doesn't like it, try putting / in front of the quotes.

    Jason
    ---------------------------------
    JMH Web Services
    Web Development, Miva Merchant, and Much More!
    <A HREF ="http://www.jmhonline.net">http://www.jmhonline.net</A>

    To all,
    I have a few lines of Javascript that I want to add at or near the
    bottom of each page that SEK (Search Engine Killer) generates. Though
    SEK gives you some capability to enter some tags, it doesn't seem to
    offer enough of this type of feature to add something like the function
    below. Does anyone have any suggestions?: Thanks/Steven

    "<script language="JavaScript1.2">

    /*
    Disable right click script II (on images)- By Dynamicdrive.com
    For full source, Terms of service, and 100s DTHML scripts
    Visit <A HREF ="http://www.dynamicdrive.com <http://www.dynamicdrive.com>">http://www.dynamicdrive.com <http://www.dynamicdrive.com></A>
    */

    var clickmessage="Right click disabled on images!"

    function disableclick(e) {
    if (document.all) {
    if (event.button==2||event.button==3) {
    if (event.srcElement.tagName=="IMG"){
    alert(clickmessage);
    return false;
    }
    }
    }
    else if (document.layers) {
    if (e.which == 3) {
    alert(clickmessage);
    return false;
    }
    }
    else if (document.getElementById){
    if (e.which==3&&e.target.tagName=="IMG"){
    alert(clickmessage)
    return false
    }
    }
    }

    function associateimages(){
    for(i=0;i<document.images.length;i++)
    document.images[i].onmousedown=disableclick;
    }

    if (document.all)
    document.onmousedown=disableclick
    else if (document.getElementById)
    document.onmouseup=disableclick
    else if (document.layers)
    associateimages()
    </script>"


    #2
    SEK2 (Search Engine Killer) and some JavaScript



    ------=_NextPart_000_0032_01C27CE5.084A3070
    Content-Type: text/plain;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable

    To all,
    I have a few lines of Javascript that I want to add at or near the
    bottom of each page that SEK (Search Engine Killer) generates. Though
    SEK gives you some capability to enter some tags, it doesn't seem to
    offer enough of this type of feature to add something like the function
    below. Does anyone have any suggestions?: Thanks/Steven
    =20
    "<script language=3D"JavaScript1.2">
    =20
    /*
    Disable right click script II (on images)- By Dynamicdrive.com
    For full source, Terms of service, and 100s DTHML scripts
    Visit <A HREF ="http://www.dynamicdrive.com <http://www.dynamicdrive.com>=20">http://www.dynamicdrive.com <http://www.dynamicdrive.com>=20</A>
    */
    =20
    var clickmessage=3D"Right click disabled on images!"
    =20
    function disableclick(e) {
    if (document.all) {
    if (event.button=3D=3D2||event.button=3D=3D3) {
    if (event.srcElement.tagName=3D=3D"IMG"){
    alert(clickmessage);
    return false;
    }
    }
    }
    else if (document.layers) {
    if (e.which =3D=3D 3) {
    alert(clickmessage);
    return false;
    }
    }
    else if (document.getElementById){
    if (e.which=3D=3D3&&e.target.tagName=3D=3D"IMG"){
    alert(clickmessage)
    return false
    }
    }
    }
    =20
    function associateimages(){
    for(i=3D0;i<document.images.length;i++)
    document.images[i].onmousedown=3Ddisableclick;
    }
    =20
    if (document.all)
    document.onmousedown=3Ddisableclick
    else if (document.getElementById)
    document.onmouseup=3Ddisableclick
    else if (document.layers)
    associateimages()
    </script>"

    ------=_NextPart_000_0032_01C27CE5.084A3070--

    Comment


      #3
      SEK2 (Search Engine Killer) and some JavaScript



      Good to know, but getting it in via the copyright field is not a big deal.
      Once you get in, all you have to do is click "Create Everthing" with no
      downloading, editing, and then uploading ever.

      Jason


      > Any code you can't get in with it you can use a product like BBedit
      > from barebones.com .
      > It is amazing at how fast it can do a find and replace on over 1700
      > files that SEK generates on our project.
      > It would do that in probably about 10 seconds or less.
      >
      > -Barrett
      > [email protected]
      > http://handmade-paper.us
      > Static: http://handmade-paper.us/home/
      > Hosted by Cybrhost.com MM 4.13/engine v3.9408-OUI 4.44
      >
      > On Saturday, October 26, 2002, at 11:44 AM, METAGeneral wrote:
      >
      > > To all,
      > > I have a few lines of Javascript that I want to add at or near the
      > > bottom of each page that SEK (Search Engine Killer) generates. Though
      > > SEK gives you some capability to enter some tags, it doesn't seem to
      > > offer enough of this type of feature to add something like the function
      > > below. Does anyone have any suggestions?: Thanks/Steven
      > >
      > > "<script language="JavaScript1.2">
      > >
      > > /*
      > > Disable right click script II (on images)- By Dynamicdrive.com
      > > For full source, Terms of service, and 100s DTHML scripts
      > > Visit <A HREF ="http://www.dynamicdrive.com <http://www.dynamicdrive.com>">http://www.dynamicdrive.com <http://www.dynamicdrive.com></A>
      > > */
      > >
      > > var clickmessage="Right click disabled on images!"
      > >
      > > function disableclick(e) {
      > > if (document.all) {
      > > if (event.button==2||event.button==3) {
      > > if (event.srcElement.tagName=="IMG"){
      > > alert(clickmessage);
      > > return false;
      > > }
      > > }
      > > }
      > > else if (document.layers) {
      > > if (e.which == 3) {
      > > alert(clickmessage);
      > > return false;
      > > }
      > > }
      > > else if (document.getElementById){
      > > if (e.which==3&&e.target.tagName=="IMG"){
      > > alert(clickmessage)
      > > return false
      > > }
      > > }
      > > }
      > >
      > > function associateimages(){
      > > for(i=0;i<document.images.length;i++)
      > > document.images[i].onmousedown=disableclick;
      > > }
      > >
      > > if (document.all)
      > > document.onmousedown=disableclick
      > > else if (document.getElementById)
      > > document.onmouseup=disableclick
      > > else if (document.layers)
      > > associateimages()
      > > </script>"
      > >
      >
      >

      Comment


        #4
        SEK2 (Search Engine Killer) and some JavaScript



        Any code you can't get in with it you can use a product like BBedit
        from barebones.com .
        It is amazing at how fast it can do a find and replace on over 1700
        files that SEK generates on our project.
        It would do that in probably about 10 seconds or less.

        -Barrett
        [email protected]
        http://handmade-paper.us
        Static: http://handmade-paper.us/home/
        Hosted by Cybrhost.com MM 4.13/engine v3.9408-OUI 4.44

        On Saturday, October 26, 2002, at 11:44 AM, METAGeneral wrote:

        > To all,
        > I have a few lines of Javascript that I want to add at or near the
        > bottom of each page that SEK (Search Engine Killer) generates. Though
        > SEK gives you some capability to enter some tags, it doesn't seem to
        > offer enough of this type of feature to add something like the function
        > below. Does anyone have any suggestions?: Thanks/Steven
        >
        > "<script language="JavaScript1.2">
        >
        > /*
        > Disable right click script II (on images)- By Dynamicdrive.com
        > For full source, Terms of service, and 100s DTHML scripts
        > Visit <A HREF ="http://www.dynamicdrive.com <http://www.dynamicdrive.com>">http://www.dynamicdrive.com <http://www.dynamicdrive.com></A>
        > */
        >
        > var clickmessage="Right click disabled on images!"
        >
        > function disableclick(e) {
        > if (document.all) {
        > if (event.button==2||event.button==3) {
        > if (event.srcElement.tagName=="IMG"){
        > alert(clickmessage);
        > return false;
        > }
        > }
        > }
        > else if (document.layers) {
        > if (e.which == 3) {
        > alert(clickmessage);
        > return false;
        > }
        > }
        > else if (document.getElementById){
        > if (e.which==3&&e.target.tagName=="IMG"){
        > alert(clickmessage)
        > return false
        > }
        > }
        > }
        >
        > function associateimages(){
        > for(i=0;i<document.images.length;i++)
        > document.images[i].onmousedown=disableclick;
        > }
        >
        > if (document.all)
        > document.onmousedown=disableclick
        > else if (document.getElementById)
        > document.onmouseup=disableclick
        > else if (document.layers)
        > associateimages()
        > </script>"
        >


        Comment

        Working...
        X