Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 43

Thread: Adding Stuff Froms Scripts

  1. #21
    Poster
    Join Date
    Mar 2003
    Posts
    3,582
    This is what the script looks like -->

    http://s90860044.onlinehome.us/login.htm

    What you need now, Is the CGI script (or form) that this points to -->>

    Code:
    <form NAME="passwordform" ACTION="http://207.82.250.251/cgi-bin/start" METHOD="post">
    If this isn't your IP, then it isn't going to work for your site too well if at all.

    I'd guess this is the IP of javafile's or the script's author.

    Or is this supposed to log you directly into MS or Hotmail somehow. Then you'd need to find the address and script name there for it to work.

  2. Internet, Programming and Graphics   -   #22
    okay fuck that idea then.
    I got a java scripts that makes a link to book make my site yeah and i copyied that into a paragraph as well and that didnt work either its this:

    THIS SCRIPT BROUGHT TO YOU BY JAVAFILE.COM - http://www.javafile.com

    PASTE THIS SCRIPT INTO YOUR HEAD TAG

    <script language="JavaScript1.2">
    <!--
    var bookmarkurl="http://www.javafile.com/"
    var bookmarktitle="Javafile.com - Free javascripts and applets"

    function addbookmark(){
    if (document.all)
    window.external.AddFavorite(bookmarkurl,bookmarktitle)
    }
    //-->
    </script>

    PASTE THIS SCRIPT INTO YOUR BODY TAG

    &#60;script>
    if (document.all)
    document.write(&#39;Click here to Bookmark this site&#33;&#39
    </script>




    THIS SCRIPT BROUGHT TO YOU BY JAVAFILE.COM - http://www.javafile.com

    anyone have any ideas how to get that to work.

    >>>n b alert here<<<

    Peerzyboy :helpsmile:


  3. Internet, Programming and Graphics   -   #23
    Poster
    Join Date
    Mar 2003
    Posts
    3,582
    It works just fine&#33;&#33; You don&#39;t "paste it into a paragragh",

    You gotta have the rest of the documant to make it work. ]

    Just read it and do exactly what it says.

    In this example, use notepad to search and replace the default URL
    ( var bookmarkurl="http://www.javafile.com/"
    var bookmarktitle="Javafile.com - Free javascripts and applets" )
    with your URL.

    Do one line at a time.

    You can customise the massage too by changing the bold part in the script.

    <&#33;DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title>bookmark</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    &#60;script language="JavaScript1.2">
    &#60;&#33;--
    var bookmarkurl="http://www.javafile.com/"
    var bookmarktitle="Javafile.com - Free javascripts and applets"

    function addbookmark(){
    if (document.all)
    window.external.AddFavorite(bookmarkurl,bookmarktitle)
    }
    //--&#62;
    </script>

    </head>

    <body>
    <div align="center">
    &nbsp; &#60;script>
    if (document.all)
    document.write(&#39;Click here to Bookmark this site&#33;&#39
    </script>
    &nbsp;
    </div>
    </body>
    </html>

  4. Internet, Programming and Graphics   -   #24
    h1
    Guest
    That&#39;s not a very good script IMO because it will only work in IE. Here&#39;s a way to improve that:
    Code:
    &#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34; standalone=&#34;yes&#34; ?&#62;
    &#60;&#33;doctype html public &#34;-//W3C//DTD XHTML 1.1 Strict//EN&#34; &#34;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1.1-strict.dtd&#34; /&#62;
    &#60;html xmlns=&#34;http&#58;//www.w3.org/1999/xhtml&#34; xml&#58;lang=&#34;en-US&#34; lang=&#34;en-US&#34; dir=&#34;ltr&#34;&#62;
    &#60;head&#62;
    &#60;meta name=&#34;author&#34; content=&#34;haxor41789&#34; /&#62;
    &#60;meta http-equiv=&#34;content-type&#34; content=&#34;application/xhtml+xml; charset=UTF-8&#34; /&#62;
    &#60;script type=&#34;text/javascript&#34;&#62;
    function bookmark&#40;&#41;
    {
    if&#40;&#40;navigator.userAgent.toLowerCase&#40;&#41;&#41;.indexOf&#40;&#34;msie&#34;&#41;&#33;=-1&#41;
    {
    window.external.AddFavorite&#40;&#34;http&#58;//www.your.site.com&#34;,&#34;Your Site&#34;&#41;;
    }
    else
    {
    alert&#40;&#34;This link will work only in Internet Explorer.&#34;&#41;;
    }
    }
    &#60;/script&#62;
    &#60;/head&#62;
    &#60;body&#62;
    &#60;a href=&#34;javascript&#58;bookmark&#40;&#41;;&#34;&#62;Click here to bookmark this page.&#60;/a&#62;
    &#60;/body&#62;
    &#60;/html&#62;

  5. Internet, Programming and Graphics   -   #25
    h1
    Guest
    "Study of juvenile delinquency?"

  6. Internet, Programming and Graphics   -   #26
    Originally posted by haxor41789@24 February 2004 - 05:50
    That&#39;s not a very good script IMO because it will only work in IE. Here&#39;s a way to improve that:
    Code:
    &#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34; standalone=&#34;yes&#34; ?&#62;
    &#60;&#33;doctype html public &#34;-//W3C//DTD XHTML 1.1 Strict//EN&#34; &#34;http&#58;//www.w3.org/TR/xhtml1/DTD/xhtml1.1-strict.dtd&#34; /&#62;
    &#60;html xmlns=&#34;http&#58;//www.w3.org/1999/xhtml&#34; xml&#58;lang=&#34;en-US&#34; lang=&#34;en-US&#34; dir=&#34;ltr&#34;&#62;
    &#60;head&#62;
    &#60;meta name=&#34;author&#34; content=&#34;haxor41789&#34; /&#62;
    &#60;meta http-equiv=&#34;content-type&#34; content=&#34;application/xhtml+xml; charset=UTF-8&#34; /&#62;
    &#60;script type=&#34;text/javascript&#34;&#62;
    function bookmark&#40;&#41;
    {
    if&#40;&#40;navigator.userAgent.toLowerCase&#40;&#41;&#41;.indexOf&#40;&#34;msie&#34;&#41;&#33;=-1&#41;
    {
    window.external.AddFavorite&#40;&#34;http&#58;//www.your.site.com&#34;,&#34;Your Site&#34;&#41;;
    }
    else
    {
    alert&#40;&#34;This link will work only in Internet Explorer.&#34;&#41;;
    }
    }
    &#60;/script&#62;
    &#60;/head&#62;
    &#60;body&#62;
    &#60;a href=&#34;javascript&#58;bookmark&#40;&#41;;&#34;&#62;Click here to bookmark this page.&#60;/a&#62;
    &#60;/body&#62;
    &#60;/html&#62;
    so i copy that into a paragraph in frewebs maker and change the www.mysite.com to my site? okay i&#39;ll try that when i get home.

    unless i read wrong

    remember im a n00b

    peerzyn00b


  7. Internet, Programming and Graphics   -   #27
    h1
    Guest
    OK. Post the code to the entire document here.

  8. Internet, Programming and Graphics   -   #28
    this is all that came with the book mark download
    THIS SCRIPT BROUGHT TO YOU BY JAVAFILE.COM - http://www.javafile.com

    PASTE THIS SCRIPT INTO YOUR HEAD TAG

    &#60;script language="JavaScript1.2">
    &#60;&#33;--
    var bookmarkurl="http://www.javafile.com/"
    var bookmarktitle="Javafile.com - Free javascripts and applets"

    function addbookmark(){
    if (document.all)
    window.external.AddFavorite(bookmarkurl,bookmarktitle)
    }
    //--&#62;
    </script>

    PASTE THIS SCRIPT INTO YOUR BODY TAG

    &#60;script>
    if (document.all)
    document.write(&#39;Click here to Bookmark this site&#33;&#39
    </script>




    THIS SCRIPT BROUGHT TO YOU BY JAVAFILE.COM - http://www.javafile.com
    but can i just copy and ofcorse alter the nessaserry bits this:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <&#33;doctype html public "-//W3C//DTD XHTML 1.1 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1.1-strict.dtd" />
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US" dir="ltr">
    <head>
    <meta name="author" content="haxor41789" />
    <meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" />
    &#60;script type="text/javascript">
    function bookmark()
    {
    if((navigator.userAgent.toLowerCase()).indexOf("msie")&#33;=-1)
    {
    window.external.AddFavorite("http://www.your.site.com","Your Site");
    }
    else
    {
    alert("This link will work only in Internet Explorer.");
    }
    }
    </script>
    </head>
    <body>
    Click here to bookmark this page.
    </body>
    </html>
    into my website to make it work?

    REMEMBER IM NOT MAKING THIS IN FRONTPAGE BUT FREEWEBS FREE LITTLE CRAPPY SITE MAKER.

    Peerzyboy


  9. Internet, Programming and Graphics   -   #29
    h1
    Guest
    Does FreeWebs provide you with a code editor or file uploader or FTP access or anything?

  10. Internet, Programming and Graphics   -   #30
    file uploader yes, FTP no and dunno what the other 1 is


    Peerzyboy


Page 3 of 5 FirstFirst 12345 LastLast

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
  •