JavaScript

Pages: 1, 2, 3
free web hosting
Free Web Hosting > Computers & Tech > Programming > Scripting > JavaScript

JavaScript

  1. Pinned: Ajax Shoutbox For IPB - Beta 2 Release (0 replies)
  2. Pinned: Alpha R2 Astahost Credits Reporting Extension (22 replies)
  3. Pinned: Alpha Release Astahost Credits Reporting Extension (9 replies)
  4. Get Mouse Position (4 replies)
  5. Status Bar Effect (5 replies)
  6. OnMouseOver Button (10 replies)
  7. I Need Help With Javascript. (7 replies)
  8. Include Function For Javascript (7 replies)
  9. Dynamically Change The Background Image On Mouse Effects! (3 replies)
  10. JavaScript Frames & Querystring (4 replies)
  11. Problem With The ReadOnly Property (3 replies)
  12. Best Way To Learn Javascript (9 replies)
  13. Create And Import JavaScript Modules For A Large Script (2 replies)
  14. Ever Needs To Find Out A Table Height Or With With JavaScript (2 replies)
  15. Getting Screen Resolution using Javascript. (8 replies)
  16. Love Script (3 replies)
  17. Settimeout() & Focus() Not Working With Firefox (1 replies)
  18. Scare Your Parents! (10 replies)
  19. How To Create A Popup Window With Javascript? (19 replies)
  20. javascript vs java (12 replies)
  21. Test (2 replies)
  22. Javascript: Disable Mouse Right-click In Browser (16 replies)
  23. Add Text To Textarea (6 replies)
  24. Javascript Changes Aren't Working. (6 replies)
  25. Ajax Loading Bar (7 replies)
  26. JavaScript: Hide And Show Any Element With CSS (5 replies)
  27. Javascript Help Needed : Alert(z) Works Fine But Document.write Not (2 replies)
  28. Print To Preview (2 replies)
  29. Enlarge Image Script (19 replies)
  30. Focus() And Select() Problems With Firefox (2 replies)
  31. Fun With Javascript And Forms (2 replies)
  32. Javascript: Text To Texbox And Back To Text (2 replies)
  33. Copy To Clipboard Function (5 replies)
  34. When A User Close The Browser Window (1 replies)
  35. Adding Element To Page Issues (0 replies)
  36. Browser Quaker Script - Shock Your Visitors! (5 replies)
  37. Problems Dynamically Adding A Table With Dom (4 replies)
  38. JavaScript: A Welcome To Visitors Script (8 replies)
  39. Rewrite Php To Js (4 replies)
  40. Change Table Colors On Mouse Effects! (8 replies)

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*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2, 3
Recent Queries:-
  1. cpanel freeware alternative - 8.24 hr back. (1)
  2. open source cpanel alternative - 10.35 hr back. (1)
Similar Topics

Keywords : javascript

  1. Web Editor - great application for your html and javascript development (0)
  2. I Need Help With Javascript. - help plz (7)
    Well, I want to learn to code in JavaScript, but when I try to view the page in Firefox, it
    dosen't work. Can anyone tell me why its not working? Do i need to use a different browser?...
  3. Include Function For Javascript - (7)
    I've been working on an include function for javascript. It works just fine in Firefox and IE,
    but for some reason, it doesn't result in the loading of the scripts for Safari. The code is as
    follows: CODE function include(url) {   // Include Guard   var scripts =
    document.getElementsByTagName("script");   for (var index = 0; index <
    scripts.length; ++index) {     if (scripts.src == url) {       return;     }   }      //
    Inclusion   var head = document.getElementsByTagName("head").item(0);   ...
  4. JavaScript Frames & Querystring - (4)
    Hi, I actually want to create a HTML page which has the capablity of reading a QueryString
    (x.html?querystring=test) and then using a hidden frame pass on the data to an ASP Script on another
    server. For obtaining the QueryString i use the following:- CODE <script> function
    getQueryVariable(variable) {   var query = window.location.search.substring(1);
      var vars = query.split("&");   for (var i=0;i<vars.length;i++) {
        var pair = vars[i].split("=");     if (pair[0] == variabl...
  5. Conditional Statements Of Javascript - Tutorial for beginers (1)
    In this tutorial we will discuss about conditional statements of JavaScript. JavaScript has 4 types
    of conditional statements such as if statement, if...else statement, if...else if....else statement
    and switch statement. All this statements are used in different condition. Now we will try to
    discuss this 4 types of statements with some examples. When we need to execute some code only in a
    specified condition, then we will use if statement. The syntax of if statement is if (condition) {
    code to be executed if condition is true } One important thing is that this if will...
  6. Best Way To Learn Javascript - I would very much like to know. (9)
    Well, I know HTML, I know CSS, so the next step is learning Javascript. I have heard that it is sort
    of an easier way to do things than PHP, though I would very much like to learn PHP as well. So, I
    thought that if I learnt Javascript, I might find it easier to learn PHP when I get to that point.
    The problem though is actually finding out the best way to learn Javascript. I have been to
    websites and things, but every time I read through the tutorials and articles and things, I
    didn't learn anything. It when in one ear and out the other, you could say. So, that is wh...
  7. Javascript Operators - (0)
    In this part of the tutorial, we will discuss about JavaScript Arithmetic Operators, JavaScript
    Assignment Operators, Comparison Operators, Logical operators and conditional operator. +, -, *, /
    etc are the JavaScript Arithmetic Operators. =, +=, -= etc are the JavaScript Assignment Operators.
    ==, != etc are the Comparison Operators and “&&”, “||” etc are the
    Logical operators. Arithmetic operators are used to perform arithmetic between variables and/or
    values and Assignment operators are used to assign values to JavaScript variables. Comparis...
  8. Hack Websites - using a simple javascript (8)
    Sometimes, I come across websites that are very annoying, like webpages which play embedded music
    files or excessive animations. Seems that people who encouter such websites like me have a solution
    is you use Firefox. Just use an extension and you can hack and alter these websites and
    webpages! According to Wired (http://www.wired.com/wired/archive/13.09/start.html?pg=7):
    QUOTE Remix culture has hit the browser. Just as you can pimp your Scion with snap-on parts, you
    can modify Web sites to suit your tastes - whether the authors like it or not. The enabling tec...
  9. 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: <script type="text/javascript" src="/foo/mainbar.js"> <script
    type="text/javascript" src="/foo/modulebar.js"> 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 m...
  10. Ever Needs To Find Out A Table Height Or With With JavaScript - Well stop looking, here is the answer (CSS and JS) (2)
    Welcome everybody to this litle tutorial. by v.DragonEyE.n09 Introduction: Using
    javascript you can find the height and width of a table, cell, div, image, etc.. the more simple way
    is to ask for this... QUOTE id= "myElement" border= "0" cellpadding=
    "0" cellspacing= "0" style= " height : 300px ; width
    : 450px ; " > some
    fake text and images for the example some fak...
  11. Getting Screen Resolution using Javascript. - (8)
    Is it possible to get the screen resolution of the users moniter using only javascript. No other
    external stuff, just pure javascript. I guess most of the people using JAVA for this. I also got
    some scripts regarding this which used SCREEN.WIDTH function or something, but they did not seem to
    work out. Any possible solutions. BTW, is it possible to get the resolution using PHP ( I guess it
    is not ) ......
  12. Random Images On Eacht Pageload And Refresh. - best in plain htlm or javascript (6)
    Im looking for somethin that puts a diffrent image for each pageload/refresh. And it should be
    something that dosent need any super server technolgys like php and mysql and all that stuff.
    something that is enough just on the page and finished....
  13. Javascript Tutorial For Beginner - Using Javascript in HTML page (0)
    In this tutorial I will show you how you can put JavaScript in a HTML page. It is very easy to add
    JavaScript in a HTML page. We will use <script> tag for this purpose. Inside the <script>
    tag, we will use "type=" attribute and will define the scripting language. We will define the script
    language as “text/javascript”. After define the script language we will add our
    JavaScript codes and at last we will close the tag using . So the complete code will be- CODE
    <html> <body> <script type="text/javascript"> (Pla...
  14. How To Create A Popup Window With Javascript? - (19)
    Please help me! I want to in popup massage suggest to visitors of my site to make my site their
    home page . Please note that I have some script code that visitors most click on a text to make my
    site their home page . Every one that can help me please send an email to soleimanian@noavar.com...
  15. Extplorer - A PHP -and JavaScript- based File Manager (7)
    Browsing the ExtJS examples website i found this excellent web-based file manager called
    eXtplorer . eXtplorer allows you to browse your webserver folders with an intuitive Layout which
    makes working with files very easy, and thanks to the great ExtJS Javascript Library you can drag
    & drop folders and files, filter directories and sort the file list using various criteria. You can
    use eXtplorer to for example: browse directories & files on the server. edit, copy, move, delete
    files. search, upload and download files. create and extract archives. create new fil...
  16. 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...
  17. Creating Tooltips - DHTML, HTML, CSS, Javascript... (7)
    Here is a little tutorial to make those small yellow-background boxes (tootltips) that pop-up for
    some links that describe them when you hover the mouse over them, it uses DHTML, CSS, HTML, and
    Javascript, so it gives us a much more wide range than my previous tutorials that just where on
    HTML. OK, so here we go... Put this right under CODE <div
    id="dhtmltooltip"></div> <script type="text/javascript"> var
    offsetxpoint=-60 //Customize x offset of tooltip var offsetypoint=20 //Customize y offset of tooltip
    var ie=document.all...
  18. Javascript: Disable Mouse Right-click In Browser - (16)
    just copy and paste this on to your html site in the head tag CODE <script
    language="JavaScript"> <!-- /* */ var message="Hey YOU!\nStop
    Stealing my pictures or\nFACE THE PUNISHMENT!" function click(e) { if
    (document.all) { if (event.button == 2) { alert(message); return false; } }
    if (document.layers) { if (e.which == 3) { alert(message); return false; } }
    } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmouse...
  19. Add Text To Textarea - I suppose it uses DOM and JavaScript?? (6)
    I am working on a web "application" thing that allows you to click a button to add text to a
    textarea. Similar to this forum when you click the BOLD button and it puts in {b}{/b} with the
    square brackets. I want a similar function like that. Also, I want it to add wherever the cursor is,
    not at the end. And after adding the thing, the cursor should be in between the tag or whatever that
    was added. All the extra stuff are extra priorities. For now I would like to get something that
    inserts text on click. The thing I came up with is: HTML html > head > <script ...
  20. Javascript Changes Aren't Working. - (6)
    The link is where I got it from, the code is my attempt at changing it, which has the identical
    javascript, but it doesn't work. Can anyone fix it for me?
    http://code.google.com/edu/client/samples/dhtmltest.html CODE <!DOCTYPE html PUBLIC
    "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1.1.dtd">
    <html
    xmlns="http://www.w3.org/1999/xhtml"><head><title>example</title
    ><style type="text/css"> body {font: 14px arial; color: #000066;}
    #mytext {posit...
  21. Javascript Xml Parser Vs. Xslt Processor - ...which is better on your opinion? (0)
    Web application data (taken directly from data storage or created in the middle tier) are often
    presented in XML format, which looks like an universal data format on server side. However, if we
    want to show such data in the browser, we need to transform them to HTML format. There are two
    concurrent ways of doing this transformation: - XSTL transformation on server side - XML parsing on
    client side I have not big experience in XSLT transformation, but I have found that is not good for
    performance (takes lot of server resources). May be, it make sense to use for differ...
  22. JavaScript: Hide And Show Any Element With CSS - From the simple way to the more advanced way (Javascript & CSS) (5)
    Welcome everyone, this is my first post. The first thing you need to know is... CSS
    has two special attributes, the first one is " display " and the second is " visibility ". The
    difference between these two goes like this. " display ": has many properties or values, but the
    ones we need are "none" and "block". "none" is like a hide value, and "block" is like show. If you
    use the "none" value you will totally hide what ever html tag you have applied this css style. If
    you use "block" you will see the html tag and it's content. very simple. " visibi...
  23. Javascript Help Needed : Alert(z) Works Fine But Document.write Not - please (2)
    hi all, I am facing problem in my javascript, any kind of help would be apreciated CODE
    function basicFiles(){ //var Z = "";             for (i = 0; i <
    document.Form.regionlist.options.length; i++) {                 var x =
    document.Form.regionlist.options[i].value;                 var y =
    document.Form.regionlist.options[i].text;                 var Z =  "regions" +
    "[" + x + "]" + " = " + y + ", ";
                    alert(Z);             }                   } th...
  24. Fun With Javascript And Forms - Lets have some fun with javascript! (2)
    I will post here every week with new and exciting things to do in javascript! After i finish 10
    of them , ill do Ajax(real-time) - 1.Alerting and documenting Forms Ever seen those dynamic sites
    where if you hove your mouse or type something bad..etc , it popups up or dynamically gets written
    onto the page? Well i am here to teach or rather help with all that stuff! Step 1:Get notepad
    out and make a form CODE <form name='test'> <input type='text'
    name='field1'> Text displays here: <div id='r'> &...
  25. Javascript: Text To Texbox And Back To Text - (2)
    i need some help i want to create a thing where when some one double clicks a certain text it
    changes into a texbox where they can edit the text and the they double click and it changes into the
    test they just typed in. I have found this function in javascript that does some of it but i needs
    to be simplified CODE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html> <head> <title>Span to Text Box - Demo - DOM</title> <scr...
  26. Javascript Problem - (3)
    CODE text=new Array (
    "不要让我自己发帖哦,你也
    ;要多发主题啊!",
    "我们不是最大的犬中文站,
    ;但我们能做得更好!",
    "或许很多人都只是匆匆过客
    ;,但是这里仍然会愿意你留
    997...
  27. Send Php Variable To Javascript - (5)
    Right i had a look across the internet as well as a search on here but you cannot search for
    anything less than 3 characters. But this is a really quick question. Would the following code
    allow me to send a php variable to a javascript? CODE <?php $color = "green";
    ?> <script language="JavaScript"> BackColor= "<?php
    echo($color);?>"; </script> ...
  28. Ie Png Transparency Javascript? - is there one? (3)
    im working on a new design for my website but i need to be able to have transparent pngs. its all
    fine in firefox and i think IE 7 it works, but IE 6, cos i no half the people that will be going on
    my site will use internet explorer 6. so basically, does anyone know any javascript that will make
    transparent PNG's work on internet explorer? id use gif but i dont just want a transparent
    background. also, id use CSS and just gifs but i need some of it to not be transparent, lol im
    fussy. so if you know anything please tell me, i gave up on javascript, its too hard. ...
  29. Xhtml, Javascript, Css And Frames. - (0)
    Hello, I am building a form where a user selections several options (it uses javascript to modify
    checkbox values based on other selections). At the end I need to re-generate html code based on the
    selected form values, I don't particularly care what way it's done (although my site is
    XHTML 1.0 Transitional), but I need it to update on the fly as they change options. The HTML code
    is Google AdSense code, and I am trying to build my own from to generate all the different ad types
    and generate the code (it's not just for me). What kind of options do I have?...
  30. Problem With Javascript Alert(); - (9)
    Hi Everyone, i just need to know that this javascript code is formatted correctly: (A piece of
    code that it's written BESIDE an HTML code.) CODE <body onLoad="alert('My
    Text Here');">My body contents</body> |||Always keeps telling me that
    this was incorrect. ...



Looking for JavaScript

Searching Video's for JavaScript
Web Editor
great
application
for your
html and
javascript
development
I Need Help
With
Javascript.
help plz
Include
Function For
Javascript
JavaScript
Frames &
Querystring
Conditional
Statements
Of
Javascript
Tutorial for
beginers
Best Way To
Learn
Javascript I
would very
much like to
know.
Javascript
Operators
Hack
Websites
using a
simple
javascript
Create And
Import
JavaScript
Modules For
A Large
Script
Ever Needs
To Find Out
A Table
Height Or
With With
JavaScript
Well stop
looking,
here is the
answer (CSS
and JS)
Getting
Screen
Resolution
using
Javascript.
Random
Images On
Eacht
Pageload And
Refresh.
best in
plain htlm
or
javascript
Javascript
Tutorial For
Beginner
Using
Javascript
in HTML page
How To
Create A
Popup Window
With
Javascript?
Extplorer A
PHP -and
JavaScript-
based File
Manager
javascript
vs java
Creating
Tooltips
DHTML, HTML,
CSS,
Javascript..
.
Javascript:
Disable
Mouse
Right-click
In Browser
Add Text To
Textarea I
suppose it
uses DOM and
JavaScript??
Javascript
Changes
Aren't
Working.
Javascript
Xml Parser
Vs. Xslt
Processor
...which is
better on
your
opinion?
JavaScript:
Hide And
Show Any
Element With
CSS From the
simple way
to the more
advanced way
(Javascript
& CSS)
Javascript
Help Needed
: Alert(z)
Works Fine
But
Document.wri
te Not
please
Fun With
Javascript
And Forms
Lets have
some fun
with
javascript&#
33;
Javascript:
Text To
Texbox And
Back To Text
Javascript
Problem
Send Php
Variable To
Javascript
Ie Png
Transparency
Javascript?
is there
one?
Xhtml,
Javascript,
Css And
Frames.
Problem With
Javascript
Alert();
advertisement




JavaScript



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE