www.webdeveloper.com

Search:

Type: Posts; User: Angry Black Man

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. WRONG! function one() { function two() //...

    WRONG!


    function one()
    {
    function two() // private to one
    {
    alert("test")
    }
    two()
  2. ;)

    ;)
  3. what errors are you getting? assuming you get...

    what errors are you getting? assuming you get "xxx is not a property or method" or something similar, try iterating through all the properties of the object to find out what IE thinks ARE properties...
  4. Replies
    6
    Views
    579

    it's "suit". it's analogous to playing cards. ...

    it's "suit". it's analogous to playing cards.

    how could you ever hope to solve the problem if you don't have access to the source code?? server side or client side??

    anyway, as mentioned...
  5. this is not making any sense. i don't use chrome,...

    this is not making any sense. i don't use chrome, but there is no specification that i'm aware of that makes "calling one domain in a new frame from a different domain" illegal.

    how did you...
  6. Replies
    1
    Views
    458

    javascript is all about doing things it's told....

    javascript is all about doing things it's told. so you told javascript to change the iframe's address and to go the pressed down state.

    you'll notice that when you press back, you haven't told...
  7. Replies
    6
    Views
    579

    why do they have to resubmit the form? what...

    why do they have to resubmit the form? what prevents them from bypassing it?
  8. what errors are you seeing in your browser's...

    what errors are you seeing in your browser's error log?
  9. Replies
    4
    Views
    486

    but yea, this same thing can be done with...

    but yea, this same thing can be done with "window.write" and innerHTML.
  10. Replies
    1
    Views
    640

    AJAX could "load an html page". regular...

    AJAX could "load an html page". regular javascript can then be used to "change the whole page".

    here's the AJAX tutorial:

    http://www.w3schools.com/ajax/default.asp

    the idea here would be...
  11. first: background images cannot be stretched...

    first:

    background images cannot be stretched unelss you use CSS3. CSS3 hasn't been ratified yet, so you may or may not get the desired result across all browsers (especially older browser...
  12. Replies
    4
    Views
    486

    it's exceedingly possible. whenever javascript...

    it's exceedingly possible. whenever javascript opens any windows, those windows are addressable by javascript.

    here's an example for you:


    <div id="someDiv"><table border=1><tr><td>this is the...
  13. Replies
    4
    Views
    799

    this is mostly true. you can do something like: ...

    this is mostly true. you can do something like:


    document.forms["orderform"].elements["shipmenu"].value

    or


    document.forms["orderform]["shipmenu"].value
  14. Replies
    7
    Views
    657

    interesting read. he didn't actually use AJAX to...

    interesting read. he didn't actually use AJAX to preload any type of image though, so why did he include that as a method?
  15. ever shown her "x+=1"?

    ever shown her "x+=1"?
  16. Replies
    22
    Views
    1,465

    Not in any way shocked by this response. Learning...

    Not in any way shocked by this response. Learning is the enemy of ignorance.
  17. Replies
    9
    Views
    710

    what errors are you getting? what browser are you...

    what errors are you getting? what browser are you testing with?
  18. this is a man after my own heart!

    this is a man after my own heart!
  19. Replies
    1
    Views
    513

    i'm confused by what you mean by your use of the...

    i'm confused by what you mean by your use of the word "variable" and not at all familiar with what you mean by "google cpc".

    first, javascript can not natively determine the IP address of any...
  20. document.write is only useful if the page hasn't...

    document.write is only useful if the page hasn't finished loading. this typically is not the solution people can or mean to properly implement.

    AJAX is great for retrieving information from...
  21. the "output on the screen" is done in HTML. ...

    the "output on the screen" is done in HTML.

    HTML doesn't recognize "\n" to mean anything except that litteral character sequence.

    you'd have to use HTML to create breaks "on the screen".
  22. Replies
    22
    Views
    1,465

    grey, you really should stop fighting the...

    grey, you really should stop fighting the learning opportunity you've been given here!
  23. Replies
    22
    Views
    1,465

    I'm enjoying your need to try and denigrate me....

    I'm enjoying your need to try and denigrate me. It is expected, however. Also, judging purely by the length of your reply and the code you posted, it would appear that you've confused wisdom with...
  24. Replies
    22
    Views
    1,465

    i agree. this, as opposed to solving the problem...

    i agree. this, as opposed to solving the problem for them. it's best to ask direct questions than to assume as you did, i say.

    your wisdom is on par with your age, my friend. you've surprised no...
  25. Replies
    22
    Views
    1,465

    You should think about it a little longer and...

    You should think about it a little longer and allow the wisdom of what i said to permeate your thinking. Generally speaking, those who are very young tend to take minor correction as a massive...
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4
HTML5 Development Center



Recent Articles