Jump to content

stockton

Members
  • Posts

    42
  • Joined

  • Last visited

About stockton

  • Birthday 05/13/1939

Profile Information

  • Location
    South Africa Midrand

stockton's Achievements

Newbie

Newbie (1/7)

2

Reputation

  1. Using alert() has helped resolve this issue. Thanks for your input.
  2. I have javascript as follows function newDoc() { window.location.href = "http://192.168.0.8/devit/logon.html"; } If I call this function from my javascript as follows newDoc();[/code]it fails but if called from HTML[code]<input type="button" nanme="SelectButton" id="SelectButton" value="Login" onclick="newDoc()" height="50" /> it works.Please tell me what I am getting wrong.
  3. I have heard a rumour that it is possible to create apps for smart phones using only HTML5, CSS3 & JavaScript.Up till now I have used PhoneGap to make my programs cross platform compatible, but I have been given to understand that with only HTML5, CSS3 and Javascript one can create crossplatform applications(Cross platform = Android, IOS and Blackberry).Can someone please point me in the correct direction?
  4. I have followed the procedure at http://community.lin...torial/view/486 to install LAMP on my Mint 13 laptop with a view to developing locally & once working emigrate to my server but ...... the following simple HTML only displays the title(No image). The image does exist in the images folder & it makes no difference if I refer to it with ./images/prince.jpg or images/prince.jpg.Please tell me how I got the install wrong.<!DOCTYPE html><html><title>Jim Beam</title><meta name="author" content="Alf C Stockton"><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><meta http-equiv="cache-control" content="no-cache" /><meta http-equiv="expires" content="Mon, 22 Jul 2000 11:12:01 GMT" /><meta name="viewport" content="width=device-width,initial-scale=1"><script language="Javascript" src="./js/prince.js"></script></head><body><center><img src="./images/prince.jpg" alt="Jim Beam" usemap="#prince" /><map name="prince"><area shape="rect" coords="300,170,350,200" onclick="javascript:gotoFirst();" /><area shape="rect" coords="530,245,540,255" onclick="javascript:gotoSecond();" /><area shape="rect" coords="520,180,540,200" onclick="javascript:gotoThird();" /></map></body></html>BTW Something very similar works fine on my website at http://www.stockton.co.za/doc/jones
×
×
  • Create New...