www.webdeveloper.com

Search:

Type: Posts; User: lzr

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    184

    Correct usage of "onclick"

    Hi,
    I have a js widget that introduces some function a1 which calculates several math formulas (let's call them f1, f2, f3, etc). When a user clicks on a Calculate button, the results of f1, f2, f3,...
  2. Replies
    5
    Views
    733

    RND ME, OK, thank you, LZR

    RND ME,
    OK, thank you,
    LZR
  3. Replies
    5
    Views
    733

    JMRKER, Both scripts work. Wow, that was...

    JMRKER,

    Both scripts work. Wow, that was quick! Thanks.
  4. Replies
    5
    Views
    733

    Add operator treats numbers as strings

    I am trying to make a simple online calculator and I stumbled upon "add" operator. Instead of adding two numbers, the result shows both numbers written one after the other. I defined my function as
    ...
  5. Replies
    2
    Views
    1,705

    clueful, Thanks. I did not realize Math.pow can...

    clueful,
    Thanks. I did not realize Math.pow can use a fractional exponent. Somehow in all examples I saw it was integer.
  6. Replies
    2
    Views
    1,705

    How to raise a number to a fractional power

    Hi,
    Is there a function or a relatively simple way of raising a number to a power with a fractional exponent by using javascript?
    I am trying to make a simple online calculator which among other...
  7. Thread: Round function

    by lzr
    Replies
    4
    Views
    669

    Thank you all who replied. I went with the third...

    Thank you all who replied. I went with the third approach
    function Round(){
    var n=parseFloat(form1.display.value);
    if(!isNaN(n)) form1.display.value= n.toFixed(2);
    }
    and it seems to...
  8. Thread: Round function

    by lzr
    Replies
    4
    Views
    669

    Round function

    This sci calculator listed in http://javascript.internet.com/math-related/advanced-calculator-2.html has Round function which rounds the result to a nearest integer. I wonder if it possible to easy...
  9. Replies
    1
    Views
    1,448

    How to delay applet loading?

    Hi,
    An applet generally causes a large delay in webpage loading. I am looking for a javascript that would load an applet after the entire page is loaded, or possibly with a fixed delay time?
    One...
  10. I am an html beginner, but if Kompozer has almost...

    I am an html beginner, but if Kompozer has almost what I am looking for, I would think such feature [dislaying in a visual editor the presence of your own script and an editing menu] should not be a...
  11. Looking for advice on choosing a visual html editor

    Hi,
    Having tried several web design software with visual editors I noticed one common thing: when you insert your own html code in a particular place (say in a cell of a table), the visual editor...
Results 1 to 11 of 11
HTML5 Development Center



Recent Articles