Search:
Type: Posts; User: pr.longhorn
Search :
Search took 0.01 seconds.
I had a random tip section..But I wanted it to be rotation each of the tips instead..here is the code:-
/****
Show a random tip within the class names selected
****/
$(document).ready(...
<script>
var thePage = location.href.substring( location.href.lastIndexOf("/")+1, location.href.lastIndexOf(".jsp") );
if( thePage == "home_reg"){
document.write("<b></b>");
}...
Code:-
<% if( ____________ == true )
{ %>
<div class="right-col-bottom box-wrap">
<%@include file="rightcol_xss_tips_home.jspf" %>
</div>
<% } %>
How can we declare a CSS Class (in the...
In one place you say u dont like the javascript...and in other u say u dont like the html...i think u need to understand the difference between the two first. No need of your views on -you like this...
sorry I had the form name wrong...oops! :eek:..it works..thanx all
The changed code:-
function reset2(myform)
{
document.forms['myform'].name.value = "";
document.forms['myform'].email.value = "";
document.forms['myform'].pwd.value = "";...
I have tried the get element by Id (and declared id ofcourse)...but all seems to fails
so I have a form and has 4 inputs..the javascript for it is:-
function reset2(myform)
{...
function reset2(myform)
{
document.forms[0].elements[0].value = "";
document.forms[0].elements[1].value = "";
document.forms[0].elements[2].value = "";
document.forms[0].elements[3].value = "";...
Hi,
I am not able to reset my text for a login page ie after the page gets refreshed the text entered still remains...my code:-
<p>Name</p>
<input type="text" name="name" id="name"...