Hi,
im trying to put a search box in my page, and search box is not working on my mobile,
what am i missing
i have tested the functionality online it works!
will open in IE too, ive programmed it to give WAP2.0 when accessed via browser.
the following is the code, when i type something, and i hit enter, the index.p
Quote:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Search Results for : web</title>
<link rel="stylesheet" href="/wap/wireless.css" type="text/css" />
</head>
<body>
<p class="title">
<img src="/wap/images/logo.gif" width="80" height="25" alt="" />
<br /></p>
<p class="title2">Search </p>
<form method="get" action="/wap/">
<p class="content2">
<input type="text" id="search" name="search" size="10" value=""/>
<input type="submit" value=" Go " />
</p>
</form>
<p class="content"><a href="/wap/" accesskey="1">HOME</a></p>
</body>
</html>
|