Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Window elements

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25940
    soap
    Participant

    Okay so i gave up on my last try with jquery.

    Now i just need to figure out how to know where the mouse is in the window.

    For some reason i thought it was something like

    Code:
    function init(e) {
    var targ;
    if(!e) {
    var e = window.event;
    }
    if (e.target) {
    targ = e.target;
    }
    }

    then i can be like BAM "alert(e.targ);" and it’ll give me the object… not the case.

    :(

    #63049
    Taroniaeley
    Member

    I read this article its very nice and important for those person whose interested in the window element systems.
    Thanks you for information ,
    http://www.goarticles.com/cgi-bin/showa.cgi?C=1839507

    #63208
    soap
    Participant

    Thank you! I desperately needed to know how to get rid of stretch marks.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.