Jump to content

atar.yosef

Members
  • Posts

    109
  • Joined

  • Last visited

Previous Fields

  • Languages
    HTML, CSS, and JavaScript.

Contact Methods

  • Website URL
    http://
  • ICQ
    0

atar.yosef's Achievements

Member

Member (2/7)

3

Reputation

  1. Hi there!!Is there any way to find the absolute position of an element? (Element.offsetTop, Element.style.top etc, are all give the relative position of the element related to its parent element).Thanks in advance!!Atar.
  2. Hi there!! Is there any way to import values of an Excel spreadsheet's fields using PHP? any help will be appreciated! Thanks in advance!! atar.
  3. @dsonesuk:Thanks you very much about your kind and details response! I appreciate that!Regards!!Atar.
  4. Thanks dsonesuk for replying!However, I need more info about three things:1) how many characters am I limited to in the meta tag?2) can you demonstrate me how to use the "lang" attribute inside the meta tag?3) what will happen if I will write several instances of the same kind, i.e. several meta tags with the "description" attribute, will the last statement overwrite all those which precede it?Thanks in advance!!Atar.
  5. Hi there!! As all we know, if we want to give a description to a website, of course we should use at the meta tag with the description keyword as the value of the name attribute. but my question is if I want to supply multiple descriptions to a page in multiple languages such as in English, French and so on, do I need to write multiple meta tags, each with its own description, or I should write the multiple descriptions in the same meta tag and only to separate them by a comma, or a semicolon for example? Thanks in advance!! atar.
  6. Thanks to all the members which making effort to help me with this problem!!@birbal:I use at 3rd server. Probably they want some fee in order to allow me using their SMTP server.@westman:I tried your advice. Unfortunately, this didn't solve the problem.Thanks to all!Atar.
  7. @satishpoul:Unfortunately, the solutions suggested at the sites you've referred me to aren't related to me since I use at Linux based server and those solutions are about windows based servers.However, thanks for your attempt to help me!Sincerely!Atar.
  8. @satishpoul:Thanks you very much about your kind and detailed response!! I'm really appreciate that!!I'll try ASAP to review the reference you've referred me to and will try if this will work for me.Sincerely!!Atar.
  9. @justsomeguy:Thanks you very much about your kind response!! I'm appreciate that!!Sincerely!!Atar.
  10. Hi there!!I've noticed that when I'm trying to combine two CSS transitions effects, only the first one is executed and the second one is left behind. Can someone here explain me why does this occur and how to work around it?Here's a code snippet that combine two CSS transitions for your investigation: <html><head><title></title><script type="text/javascript">try{function start(){myDiv = document.getElementById("myDiv");myDiv.onclick = function(){myDiv.style.width = "160px"; myDiv.style.height = "160px";}}//end start().}//end try statement.catch(err){alert("there's an error in this page. \n the error message is:\n" + err.message + "\n the error name is: \n" + err.name + "\n and the error details are:\n" + err.constructor + "\n and the error stack is: \n" + err.stack);}//end catch statement.</script><style type="text/CSS">div#myDiv {background-color:blue; color:yellow; -webkit-transition:height 1s; -webkit-transition:width 1s;}</style></head><body onload="start()"><div id="myDiv">hhhhh</div></body></html> Thanks in advance!!Atar.
  11. Hi there!!I've noticed that when I'm trying to combine two CSS transitions effects, only the first one is executed and the second one is left behind. Can someone here explain me why does this occur and how to work around it?Here's a code snippet that combine two CSS transitions for your investigation: <html><head><title></title><script type="text/javascript">try{function start(){myDiv = document.getElementById("myDiv");myDiv.onclick = function(){myDiv.style.width = "160px"; myDiv.style.height = "160px";}}//end start().}//end try statement.catch(err){alert("there's an error in this page. \n the error message is:\n" + err.message + "\n the error name is: \n" + err.name + "\n and the error details are:\n" + err.constructor + "\n and the error stack is: \n" + err.stack);}//end catch statement.</script><style type="text/CSS">div#myDiv {background-color:blue; color:yellow; -webkit-transition:height 1s; -webkit-transition:width 1s;}</style></head><body onload="start()"><div id="myDiv">hhhhh</div></body></html> Thanks in advance!!Atar.
  12. @thescientist:Thanks for replying!!When I look in the output of the phpinfo() method, I see that there's a row which in its first column it reads "SMTP" and in its second column it reads "localhost". Is that okay? How can I achieve more info if there's in my host a SMTP server?Thanks in advance!!Atar.
  13. Hi there!! I have copied and changed the following code snippet from the php.net site: <?php$to = 'myusername@mydomain.com';$subject = 'the subject';$message = 'hello';$headers = 'From: webmaster@example.com\r\n';if(mail($to, $subject, $message, $headers)){ echo "Success!!"; }?> unfortunately, my script wasn't executed and I didn't receive the email even in my junk folder. Can someone help me solve this trouble? Thanks in advance!! atar.
  14. @ingolme and justsomeguy:Thanks you very much about your kind support! I appreciate it!!Sincerely!Atar.
  15. @ingolme and justsomeguy:Thanks you very much about your detailed and well explained answers!! I really appreciate it!!Just two more things I want to know:1) if JavaScript fails to manage timing functions accurately, which other programming languages can be used to perform accurate timing functions? (Either those programming languages are web based like php and asp or they aren't web based like JAVA and C++).2) Ingolme has said that: and I'm very curious and interested to know which algorithm he used in order to achieve more accurately results. I'll be glad if he'll share his algorithm with me.Thanks in advance!!Atar.
×
×
  • Create New...