Jump to content

jos.

Members
  • Posts

    58
  • Joined

  • Last visited

    Never

Contact Methods

  • Website URL
    http://www.josscript.com

Profile Information

  • Gender
    Not Telling

jos.'s Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I know this is the wrong spot to say this but you should rewrite how the get accesses the next calendar month. Also knowing the year would be nice. Looks pretty good though. Jos.
  2. You are right. I cannot be done. Just like you cannot post form data to a remote host with ajax either. Jos.
  3. I am pretty sure that It is a primitive calculator..... Maybe not... I think it just spits out what ever you put in ... tell you friend that he should learn better variable naming practices. Jos.
  4. yes it is very possible. use the onMouseout="" event from the email input area and use your nifty ajax functions to post this to a php script that will then return nothing if the email adder is unique and an alert of some sorts if the email is being used. it would be best if you tried to learn this for your self so here is a link to a very helpful tutorial ( more than enough to get you started. ) http://www.tizag.com/ajaxTutorial/ajax-javascript.php good luck Jos.
  5. not directly no. a jS script will only continue to run whilst the page the script is embedded in is loaded in the browser window. this does not mean that the script would die if you were to utilize an <iframe> to display another page within the current page. Hope to have helped. Jos.
  6. setTimeout('your_Attack_function',5000); the 5000 is milliseconds. Jos.
  7. no matter how many time i must insert my foot in my a** if i see that i did something wrong i go back and make it right no matter what the cost. :-\ You never know who might me looking. Jos.
  8. If you are then posting this info to a PHP script it would be a lot easier to parse the date when it gets to the server with PHP explode() function; and much more reliable too! Jos.
  9. make sure you are accessing the node properly through the parent node. ie... function changeEm(Your_form_name){ var Your_form = document.getElementById('Your_from_name'); //parent node var radioButton1 = Your_form.radio_button_name.checked; //first child node var radioButton2 = Your_form.radio_button_name.checked; //second child node if(radioButton1 == false){/*change the other one here*/} //conditions elseif(radioButton2 == false){/*Change the other one here*/} } <input type="radio" id="your_radio_button" onChange="changeEm(this.parentNode.id)" /> Hope that helped. Jos.
  10. Back one all the way.... Might I recommend vistaprint.com for the uploading of your fine work and printing needs. This is where I had my cards printed from. I uploaded my own design the customer service is tremendous and I only paid like 28$ for 250 cards. Jos.
  11. I think that it is almost there with the second one, although I have no idea what would kick it up. Is the lack of color intentional? Jos.
  12. <script type="text/javascript"> function check_box_count(the_form_name){ var the_form = document.getElementByName('the_form_name'); //get the form object by the name assign it to the the_form var var count = 0; initialize the count var for(i=0;i<the_form.length;i++){ // this loops through the elements in the form if(the_form.elements[i].type == 'checkbox'){ // if the element is one of the check boxes proceed if(the_form.elements[i].checked == true){ // if the check box is checked then increase the count count++; } } } if(count == 5 ){ return true; }else{ return false; } } </script> <!-- in the HTML form tag --> <form name="your_form" method="post" action="yourScript.php" onSubmit="check_box_count(this.name)"> <!-- calling on the submit action --> </form> This should do it. Jos.
  13. THAT IS A LOT OF FLASH! :-X the center of the body is nearly impossible to read with the white background. why would you not make the backup url on the portfolio page a link? the blue graphic at the top of the page in the header: is that a blue old lady bending over in front of me ?? the color scheme is good. Jos.
  14. syntax is : reciveing_script.php <?php $sent_input = $_POST['sent_input_name']; //the name in this POST superGlobal should be the same as the name of the input element. ?> I hope that answers your question. Jos.
  15. A) That is javascript. not php B) If you were useing php you could set up a Cron Job to handle the PHP script at those times C) is deprecated. Jos.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.