all groups > dotnet jscript > january 2006
how to defer the redraw of the img or the document
Posted by Charlie Hoo at 1/31/2006 4:09:47 PM
Hello,
I am working on a html page as simple as following:
<html><head><title>test</title>
<script language="javascript">
function doZoom()
{
var zoom=parseInt(oImg.style.zoom) + z;
oImg.style.zoom = zoom + "%";
document.body.scrollLeft += 10;
document.body.scrollTop +=1... more >>
UNDERSTANDING IT IS a NUMBER OR NON-NUMBER
Posted by Savas Ates at 1/26/2006 3:04:38 PM
i have a text field in my html page. I want to diferentiate in this text box
either it is a number or not ? how can i do that ?
... more >>
dynamic text
Posted by Nicolas at 1/23/2006 1:00:59 PM
Hello friends,
I neet to change a text into a table cell when the user click on an image.
The value of this text arrive from a variable.
Thank you for your suport.
Nico
... more >>
Will IE7 support Jscript.NET (client side support)
Posted by Thomas Giebink at 1/23/2006 4:17:41 AM
I noticed a comment about proposed support for Jscript.NET coming in IE7.0
.... Can anyone here (from Microsoft) comment? I've been using HTA's to
build DHTML applications. The code is Jscript. However I would VERY MUCH
like to write in Jscript.NET As I added to this thread... YES... this... more >>
How can i get the coordinates with Javascript or JScript for pIE?
Posted by Flash gordon at 1/19/2006 4:18:05 AM
Dear all,
i'm programming a geographical web portal with XHTML and Javascript but many
javascript events doesn't works in pocket Internet Explorer (pIE) I need to
get the coordinates (x, y) of a image when we click on the screen with the
pen.
The scripts:
- event.pageX()
- event.ge... more >>
Slow window onload on large page
Posted by Edge at 1/12/2006 8:41:03 AM
I'm not sure this is a scripting problem, but here goes:
We are developing web-based applications that are heavily reliant on
client-side programming, and many of our apps are based on SQL-based data
with many line items. In this particular case, we use AJAX to retreive the
line items, and... more >>
Error: Overflow or underflow in the arithmetic operation
Posted by sevilsivle at 1/11/2006 1:38:24 PM
Hi,
I get a strange error in JScript aspx pages. When I call the Strin
function .indexOf I sometimes get the error 'Overflow or underflow i
the arithmetic operation'. I tried solving this error by using
dedicated function:
function ccIndexOf(aStr, aSrch, aPos, aCounter)
{
var startPos =... more >>
Connecting to a .Net Object
Posted by Bob at 1/10/2006 7:38:12 AM
I inherited some jscript. I don't know much about it. The following
code:
var o = new ActiveXObject("ASCMenu.Application")
o.DoCmd(MyString);
seems to hook up with an ActiveXObejct that is currently running.
Application is a class in the object which is VB6 and DoC... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
check Overflow for <DIV>
Posted by Charlie Hoo at 1/7/2006 2:02:49 PM
Hello,
In DHMTL page, I have "<DIV style='width=100px;overflow:hidden'
id=divTest>test test test test</DIV>", I need to check if all text within
"<DIV>" and "</DIV>" is displayed; in other words, check if any charactor is
hidden. Could you tell how to check it by using javacript? Thanks a lot.... more >>
showModalDialog displays status bar when told not to
Posted by bill at 1/6/2006 10:09:45 AM
I am opening a modal dialog with showModalDialog.
I specify "status: No;" but the status bar is displayed anyway.
This happens on the msdn example of the showModalDialog at
http://msdn.microsoft.com/workshop/samples/author/dhtml/refs/showModalDialog.htm
I set Dialog Box Status to No, and... more >>
Need help reading controls added dynamically using JavaScript (innerHTML) in asp.net
Posted by Dennis Fazekas at 1/1/2006 8:46:21 AM
Greetings,
I am creating a web form which will all the user to add an unlimited number
of email addresses. Basically I have 3 buttons, "Add Another Email", "-" to
remove, and a "Save" button. When the user clicks the "Add another email" it
will call a client side JavaScript function, add_em... more >>
|