www.webdeveloper.com

Search:

Type: Posts; User: programAngel

Page 1 of 4 1 2 3 4

Search: Search took 0.01 seconds.

  1. changing the position of my window on the screen

    Hi, I have notice the following command in javascript:

    window.moveTo(10, 20);
    window.moveBy(0, 10);

    but when I running them from the console, nothing happen.
  2. Replies
    1
    Views
    361

    I found it, it is: animation-fill-mode:...

    I found it, it is:

    animation-fill-mode: forwards;
  3. Replies
    1
    Views
    361

    animation end position

    Hi, I am using keyframe to move object.

    I have set the time in the animation to 7 second, but after the 7 second it go back to the initial position.

    How can I make it that after the object...
  4. regular expression - replace function

    Hi, the code:

    name.replace(/[\[]/, "\\[")

    As far as I understand it replace "[" with "[", so actually do nothing, am I wrong?

    Because I have seen this code, but I couldn't figure out what...
  5. Replies
    1
    Views
    424

    question about cookie

    When I see code like this:

    document.cookie = name + "=" + val + expires + "; path=/";

    what is the "; path=/" for ?

    I mean the val storing the value of the cookie, it is set before, and the...
  6. Replies
    3
    Views
    753

    iBeZi, thank you.

    iBeZi, thank you.
  7. Replies
    3
    Views
    753

    regular expression in Javascript

    In code that I am reading I have the following regular expression:


    '([0-9]*)x([0-9]*)'
    and for the code:

    "400x300"
    It give me the following array:

    [400x300,400,300]
  8. the difference between viewbox width and height and the width and height in svg

    I read the following article:
    http://webdesign.about.com/od/svg/a/svg-viewbox-attribute.htm

    But in the example:


    what is the point to set width and height in the viewBox that are half of the...
  9. Replies
    1
    Views
    1,131

    kml conversion to svg

    Hi,
    I have searched in google converter from kml to svg and all I have found was the following website:
    http://kml2svg.free.fr/index.php

    But it doesn't work for me.

    Is anyone else know about...
  10. Replies
    0
    Views
    180

    question about GWT

    Should I ask question about GWT here?
    If not then where?
  11. Replies
    2
    Views
    262

    java script design pattern mediator

    Hi I am reading a book (Learning JavaScript Design Patterns Addy Osmani)about design pattern and their implantation in Java script, in the chapter of the mediator pattern, there is the following...
  12. Replies
    6
    Views
    225

    image above input tag

    Hi, I would like to create an image that will be seen above an input tag.
    I mean that I put an input tag in the dom, immediately after I put an img tag, and I want to move the position of the image...
  13. defining variable as static when it is parameter

    Hi, I have read the following post:
    http://net.tutsplus.com/tutorials/php/dependency-injection-huh/
    in one of their code, when they call a function they mention when of the given parameter as...
  14. Replies
    0
    Views
    1,196

    date format in ms excel (xls)

    Hi,

    I am writing a javascript that export information into excell.
    One of the data is date. when I enter the data as a string format it work just fine.
    Its look like:
    <Cell...
  15. Replies
    1
    Views
    499

    css general siblings selectors

    Hi,

    I now that ~ is a general sibling selector.
    However when I user like:

    a ~ b
    a must precede b, but if I want to slect all siblings of a regardless if they are after or before a, how can I...
  16. changing the location of the virtual directory in zend serve

    Hi,
    I have installed zend server community edition on win 7.

    I would like to change the virtual directory (the directory from with the server pull file when I try to access localhost) to anther...
  17. Replies
    1
    Views
    378

    attaching onsubmit function

    if I attach function to a form, for the event 'onsubmit' and that form already have function attached to it to the event onsubmit, will the new function cancelled the old or will it execute both...
  18. this is duplication. moderators please erase...

    this is duplication.

    moderators please erase this thread.
  19. regular expression for euqal number of two chars

    regular expression for euqal number of two chars
  20. regular expression for equal number of two chars

    how can I write regular expression that accept any string that has equal number of 'a' and 'b'?
  21. Replies
    1
    Views
    405

    menu don't work in IE

    http://moshe-tobul.co.il/

    Hi if you check the upper website you will see that upper menu function differently on chrome and firefox on the hand and IE on the other hand.
    I know about IE...
  22. Replies
    2
    Views
    486

    my mistake was the using of cords instead of...

    my mistake was the using of cords instead of coords
  23. Replies
    2
    Views
    486

    mistake in image map

    I am using the following code to create an image map:

    <!doctype html>
    <html>
    <head>
    </head>
    <body>
    <div id="imgconatianer">
    <img src="mas-01.png" height="600" width="1000" alt="diur-plus"...
  24. Replies
    2
    Views
    527

    regular expression for phone number

    var patt1=/[0-9-]/;
    Is the above regular expression will work for the following string?:
    974-45645654-45456445
    5464565464
    4654-4554565

    I am trying to do regular expression for phone number and...
  25. Replies
    0
    Views
    548

    recommendation of subversion clients

    Hi,

    I have tried to find a free cross platform subversion client and the best I could find was smartsvn.

    is anyone know a good free subversion client that work on both linux and windows.
Results 1 to 25 of 84
Page 1 of 4 1 2 3 4
HTML5 Development Center



Recent Articles