15,127 Topics
| |
I am using username and password. The password field is of type password. But when I do debugging i can see the password as typed in text. Is there any way to hide it. Any wrapper for this. | |
Hello everyone, I am facing a problem with the start date and the end date.I have to do a validation such that the end date entered with the date picker should be equal to or greater than the start date.I have written the following code but it is not helping … | |
I want to change this code so that you can enter "Fruits" in a textr field and the drop down is populated instead of selecting "Fruits" from a drop down. [code] <!doctype html public "-//w3c//dtd html 3.2//en"> <html> <head> <title>Multiple drop down list box from plus2net</title> <SCRIPT language=JavaScript> function reload(form) … | |
I'm very used to using innerHTML, but it isn't a W3C DOM standard, so I'm trying to work my way out of using it and get to what I feel are better practices with the standard DOM. But I can't figure out how to clear the contents of an element. … | |
hi it me again. right now i had a problem with this code. when i open with ie6, it worked but if i use ie7,safari and firefox, the result didn't show up.here i provide the code. the error is where i mark it with the red color. please someone help … | |
hey somebody help me with site rating source code which can calculate in percentage on each 'yes' or 'no' clicked | |
how to load data to DOM select html after retrieve from database using javascript. any suggestion or sample?. | |
Dear all, Firstly thanks for reading this post. I have couple questions n problems to solve, and i believe all the masters and gurus here are kind enough to help me. I am not a programmer, nor that i'm experience with jscript. But i have this task or challenge to … | |
i have one date field i want to validate that field that date should not be less that current date if it is there show alert box pls tell solution for this | |
Hi all, Sorry to bother u all, I think i previously post about the quiz script, and i read and research abit here and there, anyway i manage to write some but found some difficulties,especially about random generator.. I have this several 'set' of question and answer, and i like … | |
Hi, I have got a script to refresh a single image but I want the user to be able to change the refresh rate of the picture by clicking a link. I have tryed the following code: [CODE]<p><IMG src="http://rc-xbot.ath.cx/webcam.jpg" width="320" height="240" border="1" name="refresh"> <SCRIPT language="JavaScript" type="text/javascript"> <!-- function Change(t) { … | |
I did a search of this forum and didn't find anything on this issue. I want to display a specific message based on a date range. For example if it's June 10, I would like to display the message "Schools out! Enjoy your summer break." I would like this message … | |
hi, I am creating one website in that website i dont want allow right click and if one clicking right then i want to show alert message i-e right click is not allowed here like this can one provide some sample code for this. Thanks and Regards Punitha Pary | |
hellow i make a javascript function. i can call it via onLoad attribute and via form input. but there must be someother way to call the function, i mean from script. can anyone help me out here. thanks in advance - iqbal | |
Hi there all! I do not have a great knowledge of php but I do know basic html. I have a javascript popunder script that I would like to try on my site that runs on a php script. I know how to insert this script into an html page … | |
Hi, If i select 1 or 2 in "selectPay" then, "selectDate" should be filled with [icode]"Select date From acc Where date=1 (Or 2)";[/icode] How can i do this? Thanks [code] <select name="selectPay"> <option value=""></option> <option value="1">Pay 1</option> <option value="2">Pay 2</option> </select> <select name="selectDate"> <option></option> </select> [/code] | |
Hey All, I am trying to write a php script and would like to have an autosuggest text box with data from a mysql database. This would be for designating a town in a form. The sql query I would use would be. [CODE]<?php $connection = @mysql_connect($server,$dbusername,$dbpassword) or die(mysql_error()); $db … | |
in my pop up window if user want to go parent window only by cancel button or submit , in this way i use all attributes [CODE] popupWindow=window.open("pharma_finance_master_bank_add.jsp?ma="+ma+"&gr="+gr+"&na="+na+" " ,"mywindow", "height=400, width=600,titlebar=0,resizable=0,menubar=0,toolbar=0,location=0,directories=0,scrollbars=0,status=0"); [/CODE] but i can't disable the X (close) on the top right, could u plz help me regarding … | |
in my form there is 4 fields in that 2nd one is list box in that if u select item have to open pop up window and in that pop up window after enter all values( 4 fields) when click submit button window have to close and control come back … | |
hi everyone, iam having a textbox in my application containg a calender iamge as shown below,which when clicked displays a calender,on clicking on the calender,the date is displayed in the textbox. [code] <asp:TextBox ID="txtfromdate" runat="server" Width="100px"></asp:TextBox> <A id="A5" href="javascript:show_calendar('aspnetForm.ctl00_ContentPlaceHolder1_txtfromdate','','','DD/MM/YYYY');" runat="server"> <img id="Img5" border="0" height="20" src="../images/cal.gif" runat="server" alt="Pick a date" width="24"/></A> … | |
There is this Flash banner which expands when rolled over ... it falls behind the javascript scroller that is on page... how can the flash banner made on top of the javascript scroller ... | |
Hi everyone, I would like to ask if there any ways to pre-fill the Subject and Body field of my Web Outlook create message. I tried using URL commands and I was able to populate the To: field. However, I don't know the syntax or URL commands to populate the … | |
Hi All, When i tried to execute my ASP.Net Application, I got the Runtime error in IE " 'null' is null or not an object ". Im using Visual Studio.Net 2005 and using some Ajax Controls in my application. If i click some Events, it shows the above message. Please … | |
I need a code that hides the content when clicked and reveal them on demand using javascript. This is in webdesigning anyone to help | |
Hi Guys I want to know that when I use an image as a link the mouse pointer changes to hand type pointer. What to do to prevent it? I mean how could I make mouse pointer just remain same on image link. Should I buttons then instead. If yes … | |
Hi, Javascript below doesn't work. It always retuns false. Where is mistake? thanks [code] <script Language="JavaScript"> function validateAreas(){ if (document.form1.selectS.value=="") { alert("Please select a S"); form1.selectS.focus(); return false; } return true; } </script> <form name="form1" method="post" action="" onSubmit="return validateAreas();"> ..... <select name="selectS"> <option selected="selected"></option> <?php $q="SELECT id FROM spp"; $run=mysql_query($q); … | |
Please provide me a sample code of adding tree view menus to my jsp page. Also tell me how to make my logo transperent. ...presently it is blocking my background picture. I want to display my background as well as my logo. Please help ....................... | |
in my [B]jsp [/B]form , there is one dropdown list , if select one particular list item have to open new pop up window which doesn't have any menu's, address bar etc., [B]upto this i completed using window.open()[/B] [B] i got problem from now[/B] but when i fill the textbox … | |
Hello, I need help... i want to access the array which will come from xmlHttp.responseText for adding the options in list box. i have echo the array. like echo $arr; now i want to access that responseText for adding the options... like... [B]JS code[/B] [code]xmlHttp.onreadystatechange=function() { if(xmlHttp.readyState==4) { var arrServerList=new … |
The End.