Recent content by polarbear

  1. P

    Charging

    Hey, how much time should I leave my Nokia 6126 on the charge? How much time for the first charge ever and how much time for the other charges? Thanks
  2. P

    Phone going "off"

    Hey, I don't realy understand what's hapenning but I think I may have a deffective battery, my cellphone is turning off after 5 to 10 minute of use, like if the battery was empty, or whatever. However, I've did the full 12hrs charge before using it. Anyone could help me? Thanks
  3. P

    With HTML how do I set a custom background?

    using pure html <body background="drkrainbow.gif"> if the image is on ur computer though it will not show up if u put the page on the internet unless u upload it to the same place as the html file and have the path set correctly with CSS you can do <style> body {...
  4. P

    How can I make a simple HTML chat room? It has to actively modify code too.?

    you can not make a plain html / javascript chat room as there is no way for it to Retrieve messages from over the network, you need to implement some server side scripting language like php to either use flatfiles or databases to send and retrieve messages. After you get that you can use Ajax...
  5. P

    JQuery/PHP - passing a value to JQuery when image is clicked?

    there is a much simpiler way <script> $(document).ready(function() { $("img.ImgButtonClassName").click(function() { var buttonid = $(this).attr("buttonid"); //do other stuff here }); }); </script> and in each of the img tags put buttonid="someidnumber" and a...
  6. P

    JQuery/PHP - passing a value to JQuery when image is clicked?

    there is a much simpiler way <script> $(document).ready(function() { $("img.ImgButtonClassName").click(function() { var buttonid = $(this).attr("buttonid"); //do other stuff here }); }); </script> and in each of the img tags put buttonid="someidnumber" and a...
  7. P

    JQuery/PHP - passing a value to JQuery when image is clicked?

    there is a much simpiler way <script> $(document).ready(function() { $("img.ImgButtonClassName").click(function() { var buttonid = $(this).attr("buttonid"); //do other stuff here }); }); </script> and in each of the img tags put buttonid="someidnumber" and a...
  8. P

    JQuery/PHP - passing a value to JQuery when image is clicked?

    there is a much simpiler way <script> $(document).ready(function() { $("img.ImgButtonClassName").click(function() { var buttonid = $(this).attr("buttonid"); //do other stuff here }); }); </script> and in each of the img tags put buttonid="someidnumber" and a...
  9. P

    What is that webite where you can chat with the computer?

    Theres quite a few site that have the A.I. talking bots, i believe the most noted one is http://www.pandorabots.com/pandora/talk?botid=f5d922d97e345aa1 Which is home to the Alice bot.
  10. P

    How do i code in html how many visit counts to that page?

    u cant do it in html (the languge it self anyways) you need some server side script that detects the persons ip and increments a database field or a flatfile that keeps track of the count.
  11. P

    HTML codes! sizing images! help please?

    if you need to have more then one image resized to the same size use a CSS style <style> img { width:105px; height:97px; } </style> but that will change the size of every single img so you would probably want to make css classes <style> .IconStyle //Notice the . before IconStyle {...
  12. P

    where is the battery located in the kawasaki stx-125?

    I know it's under the seat...but can't seem to find it in the engine compartment. Thanks! Where specifically under the seat. Pictures are greatly appecaited.
  13. P

    What to expect after MMI from Harley davidson?

    That same counselor should have been able to be of assistance with housing or perhaps a dorm situation. If thats not happening he didn't do all of his job. ... That said, you may be able to live in a communal situation with room-mates and share the bills. The trick is finding like minded...
  14. P

    what is a harley davidson vrod? ?r=1249412697?

    There is a visual test you can conduct at any harley dealer that is extremely accurate.... The salesman can enlighten you on the finer points of this fine machine. There is probably a wealth of information on wikipedia, and on the HD website.
  15. P

    does harley davidson make choppers?

    Forget the moron in the green hat as he doesn't know his @$$ from 3rd base. The chopper is defined as a bike that has had everything non-essential to its operation cut off or removed to save weight. These bikes originated from the soldiers that came back from WWII and just could not get the...
Back
Top