www.webdeveloper.com

Search:

Type: Posts; User: bionoid

Page 1 of 20 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    9
    Views
    1,170

    I also found it using the same method as above...

    I also found it using the same method as above (in IE9), but because I was interested to know how it worked I went through all the methods of obfuscation and deception used in order to hide the end...
  2. Replies
    9
    Views
    1,170

    The hidden message I found was: "THE CAT SCREAMS...

    The hidden message I found was: "THE CAT SCREAMS AT MIDNIGHT"
  3. Replies
    8
    Views
    1,281

    Ok, here is my shot in the dark:

    Ok, here is my shot in the dark:


    <div style="font-size: large; text-align: center; font-weight: bold;" id="text"></div>
    <div style="font-size: large; text-align: center; font-weight: bold;"...
  4. Replies
    8
    Views
    1,281

    Well, lets try and sort out the resizing part...

    Well, lets try and sort out the resizing part first.
    I tried this as a test and got what I think you're expecting:


    <div style="font-size: large; text-align: center; font-weight: bold;"...
  5. Replies
    8
    Views
    1,281

    I'm not completely sure of what is supposed to...

    I'm not completely sure of what is supposed to happen, but from what I can see you're declaring a set of functions if the width is greater than 970 pixels, but you do not execute any of them? Also,...
  6. Replies
    5
    Views
    1,364

    Cool. Sorry, I had forgotten to come back to this...

    Cool. Sorry, I had forgotten to come back to this thread before.

    As you are using a <table> now, don't forget to remove the <br /> tags in that string.
  7. The chaining mechanism is handy if you want to...

    The chaining mechanism is handy if you want to add more than just one prototype to the function you're extending, for example:


    Function.prototype.method = function(name, func)
    {...
  8. Replies
    5
    Views
    1,364

    There wasn't much wrong with the code except that...

    There wasn't much wrong with the code except that you are not allowed to have strings spanning over multiple lines in the source code. If you want to do that you would need to break them up and...
  9. Replies
    3
    Views
    591

    That line doesn't work properly as it is, right...

    That line doesn't work properly as it is, right now it's creating an anonymous object, replacing a member with a value then returning the value you replaced it with, which is pointless. The...
  10. Yeah, honestly a function could handle a lot more...

    Yeah, honestly a function could handle a lot more "features" in my opinion.
    For example, you might have had a string with an escaped quote inside it as well:

    "Normal String", "String, with...
  11. I would normally have done this using a function...

    I would normally have done this using a function instead of a regular expression, but here is my attempt anyway :P


    <script type="text/javascript">

    document.write('"item 1", 2, 4545, "fgdfg",...
  12. Replies
    3
    Views
    591

    That line doesn't make sense to me as it is. From...

    That line doesn't make sense to me as it is. From what it looks like they are trying to give you the correct attribute name for the name you are passing, eg:

    "for" would translate to "htmlFor".
    ...
  13. Hi, I moved your bordering away from the ...

    Hi,

    I moved your bordering away from the <li> tags and placed it on the <a> tags instead, that way you would only get a double line at the bottom the the list.


    <!DOCTYPE html PUBLIC...
  14. Hi, Your child tags seemed illegally...

    Hi,

    Your child <ul> tags seemed illegally nested without <li> wrappers, so your markup has been changed here.
    Some redundant CSS rules were commented out as well as quirks mode being activated...
  15. Replies
    3
    Views
    685

    Hi, In your code you were doing assignments...

    Hi,

    In your code you were doing assignments instead of comparisons. Using == or === will perform a comparison check.


    function ChangeVis(id)
    {
    if...
  16. Replies
    1
    Views
    498

    Hey Treyton, I didn't correct anything...

    Hey Treyton,

    I didn't correct anything programatic, only shifting some css and the browser detection script to the end of the document to get things working.
    (All changes in red)


    <!DOCTYPE...
  17. Replies
    4
    Views
    100

    Check to see if this is what you're looking...

    Check to see if this is what you're looking for...


    <script type="text/javascript">

    function checkSatelites(e)
    {
    var items = e.form.elements[e.name], i, j;
    for (i = 0, j = 0; i <...
  18. Replies
    4
    Views
    420

    One reason I can see that might be your problem...

    One reason I can see that might be your problem is that you're iterating through the same resultset twice, the second time obviously starting at the end of the recordset and immediately returning...
  19. Replies
    22
    Views
    1,483

    It's been a while, but this should do it: ...

    It's been a while, but this should do it:


    <input type="text" onchange="var n = parseInt(0 + this.value, 10), x = n <= 200 ? 25 : 50; this.value = Math.max(Math.round(n / x) * x, 50);" value="50"...
  20. Replies
    3
    Views
    677

    Your regular expression seems to be working fine:...

    Your regular expression seems to be working fine:


    function validateCc3()
    {
    if (/0[1-9]|[12][0-9]|3[01]/.test(document.loginform.cc3.value)) {

    alert('Valid!');

    } else {
  21. That should be as easy as you've just described...

    That should be as easy as you've just described it:


    #ShiftGallery {
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 3348px;
    }
  22. Replies
    5
    Views
    336

    Here is what I was thinking, I am still changing...

    Here is what I was thinking, I am still changing the backgroundPosition but on the stylesheet instead of each individual element.
    In this example I have 400 Mice animating on the screen (100 in each...
  23. Replies
    5
    Views
    336

    I'm busy trying out what I suggested and I'll let...

    I'm busy trying out what I suggested and I'll let you know...
  24. Replies
    5
    Views
    336

    Nice game, took me a while to figure out how to...

    Nice game, took me a while to figure out how to place an arrow :P

    I didn't read all your code, but I'm guessing you're just changing the background positions of each animated characters element....
  25. The blue overlay is caused by the image being...

    The blue overlay is caused by the image being selected if you double-clicked the control.
    To try and prevent this I have removed the <img> tag, and substituted it with a <div> and set the gallery as...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4
HTML5 Development Center



Recent Articles