www.webdeveloper.com

Search:

Type: Posts; User: omnicity

Page 1 of 15 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    488

    What do you mean by "showing up properly" ? ...

    What do you mean by "showing up properly" ?

    Does the image not appear in the correct place, or what?
  2. Replies
    2
    Views
    232

    Personally, I wouldn't be introducing code that...

    Personally, I wouldn't be introducing code that was written for Netscape 4 and IE4 any more. Bound to be able to find modern code doing similar job.
  3. Replies
    1
    Views
    152

    What validation do you need? Minimum number of...

    What validation do you need? Minimum number of characters, specific words/phrases, or just "not empty" ?
  4. Replies
    3
    Views
    302

    Instead of having three iframes, have just one,...

    Instead of having three iframes, have just one, but give it an ID:


    <div id="test_1"><iframe id="vidFrame" width="420" height="315" src="http://www.youtube.com/embed/NK0U5lOP_-k" frameborder="0"...
  5. Replies
    3
    Views
    302

    Rather than showing/hiding the iframes, why not...

    Rather than showing/hiding the iframes, why not try having a single iframe, and dynamically setting the
    SRC of the iframe (just like old-fashioned image replacement)?
  6. So, what validation do you need?

    So, what validation do you need?
  7. I think we need a little more detail on what...

    I think we need a little more detail on what happens - do the variable have the wrong values or what?

    (Make sure that you put a semi-colon after that alert line...)
  8. Replies
    6
    Views
    600

    Ideally, you should look at running an XSLT...

    Ideally, you should look at running an XSLT script on your server, but that will not be possible for everyone, so next thought is to read you file in with AJAX
  9. This should be pretty easy - either add a style...

    This should be pretty easy - either add a
    style atribute to your div with the required z-index, or add a
    className to your div and set the z-index in your CSS.
  10. I'm not convinced that your 'list' variable is in...

    I'm not convinced that your 'list' variable is in the same scope when you try to add to it, as when you try to read it - try Alert()ing that and check that it isn't a local/shadow variable.
  11. You say that this does not work properly - can...

    You say that this does not work properly - can you elaborate on what does and doesn't happen, and what you expect it to do?
  12. Replies
    1
    Views
    488

    Might get a better response if you post this in a...

    Might get a better response if you post this in a server-side and/or PHP forum.
  13. Replies
    4
    Views
    373

    Have a look at that final return value, and tell...

    Have a look at that final return value, and tell me if that is exactly what you have in your live code - in other words is that typo from the original, or just from copying into here?
  14. Replies
    12
    Views
    105,007

    Sticky: Why is this still a sticky?

    Why is this still a sticky?
  15. Replies
    4
    Views
    762

    First of all, _everything_ in JavaScript is an...

    First of all, _everything_ in JavaScript is an object, and pretty much any variable can be used without declaring it first. Generally speaking, the impact of using new to call a constructor as...
  16. jQuery Firstly, try hard not to use pop-up windows for...

    Firstly, try hard not to use pop-up windows for any reason - users hate them, and then your problem of how/when to close them goes away!

    Secondly, many people will have their browsers configured...
  17. Replies
    1
    Views
    1,082

    Are you trying to do this with JavaScript or with...

    Are you trying to do this with JavaScript or with PHP ?
  18. Replies
    5
    Views
    928

    Porting to what? I don't see how your original...

    Porting to what?
    I don't see how your original question makes sense with JavaScript, or with any of the frameworks for that matter.

    Equally, if you are truly intending to "port" code from Java...
  19. Replies
    5
    Views
    928

    I think you missed the title of this forum:...

    I think you missed the title of this forum:
    "JavaScript (not Java) Discussion and technical support, including AJAX and frameworks (JQuery, MooTools, Prototype...)"

    Might have more luck with a...
  20. But surely that will not give you seperate...

    But surely that will not give you seperate images, just split your file into broken chunks?
  21. I think you probably can, but there is one key...

    I think you probably can, but there is one key problem to work around, which is that when you successfully load a page, you lose the current code, and so have no obvious way or recording success! ...
  22. Replies
    3
    Views
    930

    Def. need more info to understand what the...

    Def. need more info to understand what the problem is.
  23. Replies
    7
    Views
    1,285

    At the moment, your definition of PC assigns a...

    At the moment, your definition of PC assigns a string value, not an array, so try something like:


    var pc=["foo", "bar", "BS3 1PZ"];
  24. Replies
    2
    Views
    419

    In theory, what you describe is actually easier...

    In theory, what you describe is actually easier than a gallery that uses thumbnails. On the other hand, if you can't find anything close as a download, then it would be a lot of work, even for a...
  25. Are you actually writing in JavaScript? ...

    Are you actually writing in JavaScript?

    Anyway, if you want an interval of exactly 24 hours, then I suspect that it would make more sense to write the task to run once, then schedule it with Task...
Results 1 to 25 of 361
Page 1 of 15 1 2 3 4
HTML5 Development Center



Recent Articles