Nov 21, 2009

Java Script - Do you know how....

free web hosting
Open Discussion & Free Web Hosting > Computers & Tech > Programming > Scripting > JavaScript

Java Script - Do you know how....

KyoNiwa
Does anyone know how to make some cool java script stuff? Is the possiblities endless in terms of designing things and comming up with stuff? For example... how do you make that trailing text... i think that is java script.

Comment/Reply (w/o sign-up)

kraizii88z
Hello,

Just copy/paste scriptcodes for most of your javascript needs. smile.gif For an 'endless' supply of javascript scripts
check out these sites::
www.dynamicdrive.com/
www.geocities.com/SiliconValley/7116/
www.javascript.com

-These are free & tend to be the best starts to finding all the javascripts you want.
to find out about Javascript Tutorials, though, to make your own javascripts, go to

www.javascriptcity.com/
www.w3schools.com/js/default.asp

Comment/Reply (w/o sign-up)

KyoNiwa
Wow... Thank you So much kraizii88z.

I have another quick question before I look at all the links you gave me happy.gif... I was wondering if there was a way to make a javascript alert that flashes and shakes a few times...

thanks again happy.gif biggrin.gif

Comment/Reply (w/o sign-up)

melanie
Don't know about making an alert shake, but you can make the window shake with java.

CODE
<script type="text/javascript">
<!--  
function shake(n) {
if (parent.moveBy) {
for (i = 10; i > 0; i--) {
for (j = n; j > 0; j--) {
parent.moveBy(0,i);
parent.moveBy(i,0);
parent.moveBy(0,-i);
parent.moveBy(-i,0);
       }
    }
 }
}
//  -->
</script>


Trailing text....
go here:
http://www.hypergurl.com/trailingtext.html

Comment/Reply (w/o sign-up)

roninmedia
Please don't go overboard with javascript and other dynamic features. It gets annoying to some users.

Comment/Reply (w/o sign-up)

antitoxic
If someone is interested in scripts please visit www.hotscripts.com...There are lots of them..


And here is 700 very nice javascript in case you don't want to search over the net:
http://www.davidpye.com/freeware/files/jsvault.zip

Comment/Reply (w/o sign-up)

marijnnn
CODE
<script language="Javascript">

alert ("This is a Javascript Alert")


</script>


that's for the javascript alert.
i have a script that i used for my pictures. when you click on the thumbnail, it pops up a new window with the original picture. the window adapts its size to the picture, so you don't have borders or stuff like that.

javascript is cool, but indeed, don't overdo! and think about the fact that some users have javascript disabled, so they won't see any of the special effects. you should make sure that they can still see everything, even with jscript disabled!

Comment/Reply (w/o sign-up)

hast-webben
Hi,

I know that I might had mentioned this a couple of time in other cases. But the most of any scripts that I've been used and downloaded did I done from the most favorite place as follow:

http://www.hotscripts.com

It's a good board and if you can find what you're searching for there, is there the most of the time some reference to other sites where you can find what you're looking for.

I hope that this gave you something.

Cheers
Brgds
Jens Jonassen

Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : java, script

  1. Love Script
    (3)
  2. One Click To Copy Script
    Works in IE6 but not any other Browsers (0)
    As a project to "boilerplate" some text, I had this idea of making a couple of textareas in html and
    having a single click on the input button copy the contents to the clipboard and then pasting the
    text into another blank textarea. Several textareas would contain the different pieces of text and I
    would then be able to 'assemble' the full text into the 'blank' textarea and then,
    of course, copy this entire piece to the clipboard and migrate it to the final spot for copying.
    Anyways, BuffaloHELP had the basic code for the javascript, but it seems that thi....
  3. Enlarge Image Script
    (22)
    Hi, this simple one line script changes the image size and source on your thumbnail picture without
    reloading the page or using popups, just paste this code into the BODY section of your HTML
    document: CODE Best regards, edit: adding the missing ' of the src on the ondblclick
    event.....
  4. JavaScript Off Redirect Script
    How to redirect a browser when Javascrip (2)
    Hi, here's a trick that will redirect a browser when JavaScript is turned off. Why not redirect
    the ones that have JavaScript? It's because less than 10% of browsers have JavaScript turned
    off; therefore, is better to redirect less than 10% of visitors than over 90%. Simply paste this
    code into the HEAD section of your HTML document. CODE /* Created by: Will Bontrager ::
    http://www.willmaster.com/ */ //--> Best regards,....
  5. Create And Import JavaScript Modules For A Large Script
    (2)
    I have one main script which defines an object. I then have several other script files that define
    functions for that object. I have tried using the following setup to import the functions: HTML
    code snippet: Javascript code snippet: import Object.functionName; This works fine for
    Mozilla Firefox, but causes an error in Internet Explorer which causes the object to be undefined.
    I would like to know how better to import the functions into the main javascript (preferably without
    needing to add the module script to the html file) that works in both Firefox a....
  6. Javascript: Browser Detection Script
    Detect your visitors browser (2)
    If you want to detect your visitors browser, sebd them a message and redirect them use this script:
    CODE var browserName=navigator.appName; if (browserName=="Netscape") { alert("Hi Netscape
    user!") window.location = "netscape.html" } else { if (browserName=="Microsoft Internet
    Explorer") {   alert("Hi Microsoft Internet Exlorer User!");   window.location = "MIE.html" }
      else   {    alert("What are you browsing with?");    window.location = "unkown.html"    } } //-->
    ....
  7. Calling Of Functions Between Mulitple External Javascript Files
    How do I use an external script to call a function from another script (2)
    I have a page that requires many Javascript functions. In order to make the coding easier to read
    and edit, I decided to seperate them into 3 Javascript files. Two files will each do a specific job.
    One file will have the shared functions that both other 2 files will need to use. They are all
    linked to a page using three tags. The difficult part is that after the page calls a function in
    one of the special code files, that Javascript file will need to call the functions located in the
    common Javascript file. The file will call several functions, and it will an argumen....
  8. Password Protect Your Page
    Its a very simple script, do not use it for any thing serious! (2)
    Guys, if you like it you can use it, but one thing I would like to tell is that its not entierly
    safe to use such a thing, it depends on your content that you are trying to protect from usual
    visitors, beginners this is for you. The best part is that you do not need any kind of scripts
    installed on your server, it is in JavaScript which is embeded in to your HTML page. Just change the
    username from "asta" to your choice and password from "host" to your preference. Here is the code...
    CODE /*This Script allows people to enter by using a form that asks for a UserI....
  9. Browser Quaker Script - Shock Your Visitors!
    this script shakes the browser like a quake happened! (5)
    Browser Quaker! SHOCK your visitors! this script shakes the browser like a quake happened!
    yeah....try this script to believe it! im sure u will be stunned at the effect! a good way to show
    your visitor that...your website ROCKS!..and literally so ! ! i got this script from Bravenet
    's webmaster freebrees newsletter. if you haven't known bravenet before..it is a beginner
    webmaster's friend! you get lot many features for your website hosted freely. and subscribe to
    their newsletter to get gems like these! ok here's the code: CODE function init() ....
  10. Sweet Titles
    script will display the titles on your links in a very "sweet&quo (0)
    try this one...its indeed sweet! sweet titles This script will display the titles on your links
    in a very "sweet" manner. The look is customized by using CSS and is easily changed. Degrades very
    nicely. CODE /* Fading Tooltips */ div#toolTip {   position:absolute;   width:220px;
      background:#00009C;   border:2px double #fff;   text-align:left;   padding:5px;
      -moz-border-radius:5px;   z-index:1000; } div#toolTip p {   margin:0;   padding:0;   color:#fff;
      font:11px/12px verdana,arial,serif; } div#toolTip p em {   display:block;   margin-top:3px;
      color:....
  11. Bid Visitors Bye/thank U With A Popup Onunload In Just One Line!
    script designed to open a window when the users leave the site (0)
    Copied from http://www.cgiscript.net/cgi-script/csNews...wone&id=54&op=t QUOTE add the one
    line code below to the tag of the page you want to trigger the action from. when they leave that
    page another window will open. change the text "URL" in the code below to reflect the new web site
    address you want them to enter. QUOTE for example, when they leave your site you can open a
    window that says thank you for visiting. QUOTE Code: CODE
    onunload="window.open('URL')" thats it...now say a royal thanks to ur visitors!
    cheers! shiv....
  12. Let's Make Rainbow Link
    Auto Changing Link Colors Script (1)
    Put this source inbetween and !!!! CODE script language="JavaScript1.2"> var rate = 20;
    var obj; var act = 0; var elmH = 0; var elmS = 128; var elmV = 255; var clrOrg; var TimerID;
    if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) {
    Browser = true; } else { Browser = false; } if (Browser) { document.onmouseover =
    doRainbowAnchor; document.onmouseout = stopRainbowAnchor; } function doRainbow(){ if (Browser
    && act != 1) { act = 1; obj = event.srcElement; clrOrg = obj.style.color; TimerID = setInt....
  13. Need Opinion - Language Redirection Script...
    (0)
    Hi... I wasn't there for some time but now I need opinion... I hope someone would be able to say
    something about my script... what should be fixed, what I can do to improve it... it is universal
    language redirection script for few pages that I work on and I need it to be as good as it can be...
    would this be working in every browser in which scripts like that can work? If now what I should
    add? (why I aded "en" and "en-US"? The script first checks if there is exact name and then it
    converts it to small letters and takes only two first... just in case someone would....
  14. Slideshow Of Pictures
    Simple script (0)
    This is just a small script that lets you display a set of pictures in a slideshow-like manner. This
    script lets you show the thumbnailed versions of the pictures, and then when the user clicks on a
    pic, the user is taken to the actual picture. NOTE: You can add more pictures to the array by
    copying the format that is being used in it: CODE slideshow = new Array(              
                    "images/image1.bmp", "images/image2.bmp",                              
    "images/image3.bmp", "images/image4.bmp"                               ) slideNumber = sli....
  15. Need Drop Down Menu Script
    Current not working in firefox (1)
    I'm in need of a drop down menu script. The one I am currently using was written to work in
    both ie and netscape, but does not work in firefox. /sad.gif" style="vertical-align:middle"
    emoid=":(" border="0" alt="sad.gif" /> I new at installation that the author had stretched the
    rules abit to make it work, but didn't expect firefox to come out. I don't care what
    language it is written in as long it works If you have ie you can see an example at:
    http://66.78.26.33/~ruidoso/ I would appreciate any help you can recommend pete....
  16. Whats Is The Difference Between Javascript & Java
    (9)
    what is the Difference Between java to java script?....
  17. here is a javascript that allows you to print
    print script (0)
    here i the script i will allow your visitors to print your page input in html editor // This
    script was supplied free by Hypergurl // http://www.hypergurl.com if (window.print) {
    document.write(' Click Here To ' + ' + 'onClick="java script:window.print()"> This
    Page! '); } // End hide --> ....
  18. javascript vs java
    (12)
    in my opinion javascript is better then java becasue java requires more programing experecense then
    javascript and i think to that javascript is more reliable then java in some ways....

    1. Looking for java, script

See Also,

*SIMILAR VIDEOS*
Searching Video's for java, script
advertisement



Java Script - Do you know how....

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com