Hi,
I have a static html page with file size 8MB. And it is taking more than a minute to load and taking 100% CPU usage ( 1GB RAM; CPU 2.4 GHz ).
Can anyone please tell me what could be the maximum size limit for the browser, from which point the performance degrades etc.,?
Thanx in advance.
venu, exactly you are right; I figured it out by the changing the type=hidden to type=textbox, then I was able to see where the text box was and as u said it was not inside <td></td>.
thanks guys
I will look at the structure, its a local intranet application.
I just wanted to make sure if many hidden fields in a form could cause such behavirour?
thanks
jag
the following is the view source of the page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<!-- insert meta data here -->...
Hi
I have a html(jsp) page which has few hidden fields and a table with 4 columns and rows(row size depends on the # of records in the db).
Problem:
As the no. of rows increase in the table I see the table moving slightly down the page creating empty blank space above it.
I would like to...
Hi,
I have a jsp page which has few hidden fields and a table with 4 columns and rows(row size depends on the # of records in the db).
Problem:
As the no. of rows increase in the table I see the table moving slightly down the page creating empty blank space above it.
I would like to know why...
thanx spewn.
I thought of the same - but getElementsById() is not there, only thing is getElementById() and it returns one object only.
Can u give me a hint how exactly i can use regular expressions.
thanx a bunch again, all of you for replying.
Thanks guys, but let me explain my question again.
my code:
<table>
<!-- This commented part is only a trial.
<colgroup>
<col id='col1'>
<col id='col2'>
<col id='col3'>
<col id='col4'>
</colgroup>
-->
<tr>
<td name='col1'>row1col1</td>
<td...
Can anyone tell me how to retrieve all the cells of a column in a table without having to traverse all the rows and all the cells.
Right now I am naming all the cells under that column name='x', and then later doing document.getElementsByName('x') which i thought would work - but not wotking...
Hi,
I have a table shown below in a jsp page, I need that to be passed to a javascript function in a .js file included in the header.
I tried as shown below(onmouseover) but could not get the object to the javascript function.
any ideas??
thanks
<form>....
<input type="submit" name="Save...
I have a hidden field and checkbox whose names are generated dynamically with the values. the value of the key in code below can be +ve or -ve
for example: say key=9 (+ve)
hidden: name=unitRefunded9
checkbox: name=inputUnitIncluded9
say key=-9 (-ve)
hidden: name=unitRefunded-9
checkbox...
thanks
Its working
I changed it to
<input type="checkbox" name="inputUnitIncluded<c:out value='${lotListTO.primaryKey}' />" onclick="this.form.elements['unitRefunded<c:out value='${lotListTO.primaryKey}' />'].value=this.checked" />
Hi,
I have a jsp(original page), which has a link "Print as Excel" (sounds stupid - but i HAVE to be able to print it as excel). When the user clicks on this link, an almost invisible (zero height and width)popup window should open which opens the original page contents but with...
Hi,
I want to save the HTML file without popping SaveAs Dialog.
function doSaveAs(){
if (document.execCommand)
document.execCommand("SaveAs",false,'summaryHTML.html');
};
But the above code is still popping the dialog. I even tried with 'null' and 0 in place of false. But it...
Hi,
I have a hidden field and a check box, I want to change the value of the checkbox onclick event, but for some reason the value is not getting set. could somebody tell me if I am doing anything wrong..??
thanks
jag
below is the code..
<input type="hidden" name="unitRefunded" value="false"/>...
Hi,
I am generating a HTML table dynamically with the following code:
for(i=0; i<noRows; i++) {
current_cell=document.createElement("TD");
current_text=document.createTextNode('-');
current_cell.appendChild(current_text);
row.appendChild(current_cell);
}
I call this function onload. The...
Hi,
I have two frames in a window. The 'onscroll' event of a DIV in one frame should cause an offset in the DIV element of the other frame.
frame1 -> div1 ( when scrolled should cause an offset in )
frame2 -> div2
In other words, I need to be able to synchronize DIVs in two different...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.