Jump to content

Chikwado

Members
  • Posts

    287
  • Joined

  • Last visited

Posts posted by Chikwado

  1. Sorry I detect one problem. When I save my php file like this: "test.php" then window turn it into "test.php.lnk" You see this problem can block to view php file? Some people said it is window explorer that are causing it.

  2. Some one check this: I have install xampp successfully and configure apache. When I type

    http://localhost
    in my browser it redirect me to xampp setting where I can create some settings. Now how to create a directory or root folder where I can store php file and view them in my browser. some one help please.
  3. My question here sound silly but I am so sure of what I am trying to do. For Example: hit this link http://magazine.boards.net/thread/4/chiquaz. Click the post to see how this html was nested very nice, I was the one wrote that code, I used "[ul]" and "[li]" and it diplay acording to the way I want to see it. Now which tag could arrange code like the one in that link?. I had always use "<code> tag" with square bracket but it return something I don't understand, Some time it reject my post.

  4. Can some explain to me the action of this jquery code, There are one thing I want do in my webpage that is: how to call 2 asynchronized files especially : content1.html and content2.html to be diplay in my webpage. Example:

    <div id="content1.html"></div>
    <div id="content2.html"> </ div>
    I made the following code which I do not even understand its action.
    <div id="log"></div>
    <script>
    $(document).on
    ("mousemove" , function(event)
    { $("#log").text("pageX: " + event.pageX + ",
    pageY: " + event.pageY);});
    </script>
    some one help how to call 2 asynchronized file using jquery.
  5. Some one help: How to create the length and size of select option. For Example I Made following Code:

    <select  id="myselect"
    name= "stillselect" size="20">
    <option id="myoption"
    name="stilloption">
    The Option Here</option>
    </select>
    This code does not give me better result.
  6. Some one check this: I made the following code to validate "Username" which work fine.

    [color=green]<html>[/color]
    <body>
    <script>
    function ValidateForm() {
    var x = document.forms["myForm"] ["fname"].value; if(x == " ") || (x == " ") { alert("Please Input Your Name!"); return false; } } [/code ] That is: If the input is correct it will accept it but if the input is incorrect it will reject. How to modify that code so that when the input is incorrect it will say, "Your Input Is Incorrect" and when the input is correct, it will say: "You have succefully registered with us as "Username". some one check it.
  7. I have a text field "search" and also tried defferent javascript code. but none of them work. I even tried "ajax live search" but no better result. It was said that "regexp" can do it.

  8. How to make hyper link in option, I have try html code all the way but not successfull. The code are:

    <html>
    <body>
    <script> function change() { if(document.getElementById("option1").selected==true) {window.open('http://www.google.com/' , 'target')};} </script><select onchange= "changelink()"><option id="option1">My Link</option></select></body></html> Then when I click the link it do not open google, Some one help.
  9. Thank you so much, God bless you. This your explanation worth many dollar for me. I understand the so-called "Ajax" now. Thank you all for help and contributions. Thank you.

  10. This is what I mean: just check the link above, when you click "try it yourself demo" a new page will open up saying "Let Ajax change this tex" with a trigable button below it. Then, If you click it a plain text will dispaly. Saying "Ajax is not a new programming language, Ajax is a technique for creating fast and dynamic webpage" my question is this: where have you stored that plain text, how have you manage to stored and what extention does it has? I have those Ajax code in my notepad but what I am thinking is: how will I store excutable text for it. More help, Thank you.

  11. Yes, exactly the link you specified. Now, how to make another file that I will chain with div. For Example: javascript var and data type. It was made like this:

    <html>
    <body>
    <div id="message"></div><script>var people="Excutable text here"; var person="Another Excutable text here"; document.getElementById("message").innerHTML=people + "<br>" +person;</script></body></html> Then, If you process the above code it will display on the div as: Excutable text here. Another Ecutable text here. Because the text has been stored in the varable. But for ajax is different. Now how to make another file that will be display in the div. Is it just to write text in notepad and save it .responseText?
  12. Some one help on my Ajax page: when you click "try it yourself demo" an excutable file that has been chained with div will dispaly. And those Ajax code, in the head section I did not see where those text was stored, And it is not in the body section. Where is that text been stored and chained to html page. Some one help.

  13. Making everything simple and easier is a task left for webmasters. Otherwise to copy, download and save image to memory card is the simplest thing to me. With my Opera Mini, to download image, when I click 1 the browser will turn a download options. Then I will just click download to save the picture, which is very simple.

×
×
  • Create New...