Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~12.9K People Reached
Favorite Forums
Favorite Tags
Member Avatar for anandhikrishnan

Can any one help me reg this. I am working in web application project. In this on a div i have double click event to open a popup box, in android browser if i did double click then it fires zoom in event. Please any one help me javascript code …

Member Avatar for MartinRinehart
0
122
Member Avatar for anandhikrishnan

Hi All, I dont know where to post this.. I have a jsp page which includes a <iframe>iframe1</iframe> inside the iframe1 i have another iframe named <iframe>iframe2</iframe> inside the iframe2 i have function doedit(); i need to call this function from my jsp page. i use the code in my …

0
67
Member Avatar for anandhikrishnan

Hi, Am new to javascript, i have two fields 1. Start time ( hh:mm:ss Am/Pm ) 2. End time (hh:mm:ss Am/Pm) i want to validate it. Start time should be always greater than end time. Eg: start time : 10:00:00 Am end time : 09:00:00 Am It should alert the …

Member Avatar for anandhikrishnan
0
10K
Member Avatar for anandhikrishnan

Hi All, Can any one please guide me how to draw my IFRAME based on window size. Thanks in advance....

Member Avatar for almostbob
0
97
Member Avatar for anandhikrishnan

Hi All, I have used <b> tag in my code. It is like [CODE]<div> <table> <tr> <td> <B style="BACKGROUND-COLOR: orange; DISPLAY: block; HEIGHT: 1px; MARGIN-LEFT: 5px; OVERFLOW: hidden; MARGIN-RIGHT: 5px; ></B> <B style="BACKGROUND-COLOR: orange; DISPLAY: block; HEIGHT: 1px; MARGIN-LEFT: 3px; OVERFLOW: hidden; MARGIN-RIGHT: 3px; ></B> <B style="BACKGROUND-COLOR: orange; DISPLAY: block; …

Member Avatar for hericles
0
82
Member Avatar for anandhikrishnan

Hi I need to get input for a css class font-size attribute from the user like 8px,10px,12px and so on.. and dynamically I need to change it. I get the following code from net function changecss(theClass,element,value) { var cssRules; var added = false; for (var S = 0; S < …

Member Avatar for Airshow
0
194
Member Avatar for anandhikrishnan

Hi All, I have three combo boxes in a jsp file in a form. After i select valus for the three combo boxes I click search button which is a submit button, on submit the corresponding action file is called, there I can get the values by request.getparameter("name"); I just …

Member Avatar for javaAddict
0
93
Member Avatar for anandhikrishnan

Hi, I have a function in java script like this.I want to append a comma in reason_txts only if there is second element in array function(result_arr){ var reason_ids="",reason_txts=""; for(i=0;i<result_arr.length;i++){ reason_ids+=result_arr[i].id+","; reason_txts+=result_arr[i].col0+","; } document.getElementById("reasonIds_disp_hdn").value= reason_ids; document.getElementById("appReason_text").value= reason_txts; document.ViewSlot.appReason_text.className="txtbox2"; } I tried like this, function(result_arr){ var reason_ids="",reason_txts=""; for(i=1;i<=result_arr.length;i++){ reason_ids+=result_arr[i].id+","; if(i == result_arr.length) …

Member Avatar for anandhikrishnan
0
94
Member Avatar for anandhikrishnan

Hi, I am having a text box in a form in HTML, I tried to focus the text box function a(){ document.formname.textboxId.focus() // this function works in IE but throws script error document.formname.textboxId.onfocus() // text box is not selected and no script error. }

Member Avatar for codewall
0
80
Member Avatar for anandhikrishnan

Hi I have a text box element in html.I need to call onfocus function of this text box from js file. I using like this document.formname.elementname.focus(); elementname is text box name formname is its form name This code works fine in IE but not working in mozilla..... suggest me anyone.

Member Avatar for Akash Saikia
0
122
Member Avatar for anandhikrishnan

Hi All, I have a function reloaddash(1); for refresh the db.js in db.js file which sends a ajax request to the action file. In this .js itself I draw the table,td,tr for display. I dont use seperate .jsp file to draw. By onclick a link in this js file I …

Member Avatar for Shanti C
0
205
Member Avatar for anandhikrishnan

Hi All, I have a app.js file. In that for a textarea if i entered data with single qoute eg: TEST'S it gets stored in DB as TEST'S to avoid DB problem. I return the textarea value from java file in json array to app.js. If the array name is …

Member Avatar for anandhikrishnan
0
121
Member Avatar for anandhikrishnan

Hi All, My parent window is dash.html. From this i call a pat.jsp file which is a child window to dash.html. I wrote a function in dash.html function feed_refresh(){ getGlaceCompleteDashBoardResult(1); } this function `getGlaceCompleteDashBoardResult(1);` is included in a .js file in dash.html file. Now from the pat.jsp i call the …

Member Avatar for hielo
0
106
Member Avatar for anandhikrishnan

Hi all, I have a jsp page. It display a table contain 3 columns. 1st column display color name, 2nd for purpose of color like that.. Now i need the contents in td element to editable. This is the sample code. here status is a vector table. out.println("<td align=left class=formlabel1 …

Member Avatar for Protuberance
0
735
Member Avatar for anandhikrishnan

Hi all, I have two radio button yes,no in a.jsp. var IncludeCharges = document.getElementById("IncludeCharges_no").value; If i select yes i need to pass 1 to the java file and in case of no i need to pass 0. but when i retrive the radio button value using int Includecharges = Integer.parseInt(request.getParameter("IncludeCharges_yes"); …

Member Avatar for hielo
0
176
Member Avatar for anandhikrishnan

hi all, I have a html code like <select id="search"> <option id="21" value="internal"> . . . using document.getelementbyId("search").value i get internal but i need to get id of internal.. how can i do that help me..

Member Avatar for Airshow
0
102
Member Avatar for anandhikrishnan

I have a jsp file a.jsp which has b.js now i want to pass a value from a.jsp which is come from a java function like <% patientmodel.getpatient()%> I need to pass the value of this function to a function in b.js any one suggest me plz

Member Avatar for javaAddict
0
94