Forum: JavaScript / DHTML / AJAX Sep 22nd, 2007 |
| Replies: 7 Views: 1,150 |
Forum: JavaScript / DHTML / AJAX Sep 22nd, 2007 |
| Replies: 5 Views: 841 Re: Questions about Javascipt Menu Hi,
You could either add the parameters you want to post in the URL, like for this page: newreply.php?do=newreply&noquote=1&p=438334
Notice that the page has a ? and then a couple of parameters in... |
Forum: JavaScript / DHTML / AJAX Sep 20th, 2007 |
| Replies: 5 Views: 841 Re: Questions about Javascipt Menu Hi, you want the user to go to the page they select right?
When the user goes to the next page, your page is reloaded, there are only 3 solutions I can think of for your problem. And this is a... |
Forum: JavaScript / DHTML / AJAX Sep 20th, 2007 |
| Replies: 7 Views: 1,150 Re: how i m putting java script in my blog Hi,
I've found loading complex javascript in blogger difficult! Firstly, even in HTML mode blogger adds <br/> tags, which will obviously break your javascript... if you can, it would be a lot easier... |
Forum: JavaScript / DHTML / AJAX Sep 19th, 2007 |
| Replies: 2 Views: 1,030 Re: Simple JS question(DWR) But you'd need to put an ID on the for input fields - can you do this with JSP? I don't see why not?
But you may just have your naming wrong? |
Forum: JavaScript / DHTML / AJAX Sep 19th, 2007 |
| Replies: 2 Views: 1,030 Re: Simple JS question(DWR) Hi saurav!
I'm not sure what is in the dwr package, but you might not be referencing it correctly? Perhaps it is util.getValue("firstName");? However you can do the same like this:
var... |
Forum: Java Sep 18th, 2007 |
| Replies: 17 Views: 4,891 |
Forum: Java Sep 18th, 2007 |
| Replies: 1 Views: 403 Re: File Transfering service Running web services would be recommended.
FTP does not necessarily guarantee delivery and you can't be sure the file is downloaded unless you also download a flag file. Alternatively you could... |
Forum: JavaScript / DHTML / AJAX Sep 18th, 2007 |
| Replies: 2 Views: 625 Re: Beginner This is a very general question - I'd recommend checking out some wiki applications. Which can be on ASP.NET - I think? But .NET is a framework, for which many applications exist.
I noticed that... |
Forum: Java Sep 18th, 2007 |
| Replies: 7 Views: 1,095 |
Forum: JavaScript / DHTML / AJAX Sep 16th, 2007 |
| Replies: 1 Views: 795 Re: Showing Chat Msgs without reloading It would probably being using an AJAX method to check for updates on the chat server. These can be threaded to wait for your comments, while also checking the server for updates.
How much knowledge... |
Forum: JavaScript / DHTML / AJAX Sep 16th, 2007 |
| Replies: 1 Views: 1,554 Re: Changing link text. Hi,
If you want to do this with a lot of different links and for it to work well in IE and Firefox, then you might want to change it a little... alternatively, I would use an ID attribute instead of... |
Forum: JavaScript / DHTML / AJAX Aug 14th, 2007 |
| Replies: 9 Views: 684 Re: Dynamic Javascript The reason your code didn't work is that you were trying to construct the element variable as if it were a string... If you wanted to to it like this, you would need to construct the javascript you... |
Forum: Java Aug 13th, 2007 |
| Replies: 7 Views: 1,095 Re: debugging JNI application I'm not aware of any. But it isn't an area I have spent a lot of time in.
I'd suspect that you'd need the dll to be running in a C IDE in debug mode for a seamless debug thread to work. And I don't... |
Forum: Java Aug 13th, 2007 |
| Replies: 7 Views: 1,095 Re: debugging JNI application Have you tried debugging the native object in a C ide first? The interface from Java to C tends to be pretty simple... If you are happy with what is going on in Java, then it seems like the sensible... |
Forum: JavaScript / DHTML / AJAX Aug 13th, 2007 |
| Replies: 2 Views: 1,009 Re: Terminating AJAX threads I don't think there is a way to terminate the call - apart from closing the document. Prototypes are similar to objects - if you are familiar with OOP? If you have a prototype 'instance' then you can... |
Forum: JavaScript / DHTML / AJAX Aug 13th, 2007 |
| Replies: 2 Views: 1,207 Re: picture change You can give an html element an ID.
<img src="something.jpg" id="yourId">
Then look the object up using the ID.
var domElement = document.getElementById("yourId")
Now you have a reference to the... |
Forum: JavaScript / DHTML / AJAX Aug 13th, 2007 |
| Replies: 2 Views: 651 |
Forum: JavaScript / DHTML / AJAX May 24th, 2007 |
| Replies: 5 Views: 1,776 Re: scanning files in a spec folder It is possible to run applications on the client machine, but this is usually not appreciated by the user and involves signing trusted code.
A better alternative may be to request the client user... |
Forum: JavaScript / DHTML / AJAX May 23rd, 2007 |
| Replies: 3 Views: 1,279 Re: i want to declare header file in javascript You can't "import" a javascript file with a javascript file.
There is an import (and export) keyword in the javascript, but these are used for visibility of members.
I wrote some code to import... |
Forum: JavaScript / DHTML / AJAX May 22nd, 2007 |
| Replies: 5 Views: 1,776 Re: scanning files in a spec folder You can't do this with a HTML scripting language.
If you use a server side language - something like JSP, ASP, PHP etc, then you can scan the server directories and populate a list in the... |
Forum: JavaScript / DHTML / AJAX May 22nd, 2007 |
| Replies: 1 Views: 2,267 |
Forum: JSP May 1st, 2007 |
| Replies: 2 Views: 1,072 Re: what is wrong with this jsp expression? I'm not too familiar with JSP at the moment. But you are confusing your HTML code with your interpreted code... I presume that JSP is parsed once. So you shouldn't include JSP tags inside other JSP... |
Forum: Java May 1st, 2007 |
| Replies: 6 Views: 768 Re: Files I use Notepad++ it is a highly functional text editor, available open source from sourceforge. There are alternatives liek textpad and ultraedit.
Your issue is that windows and linux/unix use a... |
Forum: Java May 1st, 2007 |
| Replies: 1 Views: 705 Re: ArithmeticException help What specifically would you like to know about this problem?
An ArithmeticException is thrown when something involving arithmetic occurs that is not handled by the Java language. The example in the... |
Forum: Java Sep 26th, 2006 |
| Replies: 1 Views: 801 Re: system.gc system.gc is just a request to collect garbage, it won't invoke it immediately. And how long it takes depends on how much memory you have that is available for collection - not much = fast, lots =... |
Forum: PHP Sep 26th, 2006 |
| Replies: 3 Views: 8,819 Re: How to install mysqli extension The easiest way in most Linux/BSD distros is to use the default package manager, this way you are likely to install the version that is recommended and tested for your distro version and install the... |
Forum: C++ Sep 18th, 2006 |
| Replies: 6 Views: 808 |
Forum: JavaScript / DHTML / AJAX Jul 30th, 2006 |
| Replies: 4 Views: 4,370 |
Forum: JavaScript / DHTML / AJAX Jul 30th, 2006 |
| Replies: 4 Views: 4,370 |
Forum: HTML and CSS Jul 13th, 2006 |
| Replies: 1 Views: 1,429 Re: JS opacity menu Problems In IE - rare I'd say that the problem is the spec on the machines (even if its not)... Javascript tends to be bad with string operations and regex can also be slow. Javascript can also have issues with method... |
Forum: HTML and CSS Jul 13th, 2006 |
| Replies: 7 Views: 1,918 Re: HTML 3.2 table background color You can't. http://www.w3.org/TR/REC-html32-19970114
But why do you want to, HTML 3.2 was superseded by HTML 4.0 in 1997. But CSS is supported, so if you truely want 3.2 level implementation you will... |
Forum: HTML and CSS Jul 12th, 2006 |
| Replies: 4 Views: 1,862 Re: HTML form action="env.cgi" question now that should work... but if it doesn't then you should open up the file httpd.conf (or what ever this file is called for apache 2 on windows). Hunt down your cgi settings and change the cgi... |
Forum: HTML and CSS Jul 12th, 2006 |
| Replies: 4 Views: 1,862 Re: HTML form action="env.cgi" question I also think its a server conf problem. It sounds like you are not using your cgi, you are just trying to load the html page. Typically you don't have html in your cgi-bin, from your error it sounds... |
Forum: HTML and CSS Jun 28th, 2006 |
| Replies: 3 Views: 805 |
Forum: JavaScript / DHTML / AJAX Jun 28th, 2006 |
| Replies: 13 Views: 18,553 Re: Parent/Child Windows References I think your problem is the reload, when this happens the window probably loses all relationship references (I'm guessing). If the parent refreshes, it makes sense that your code no longer controls... |
Forum: HTML and CSS Jun 28th, 2006 |
| Replies: 1 Views: 2,899 Re: CSS Fixed Background <style type="text/css">
body
{
background-image: url('images/101.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #FFFFE5;
margin-left: 0px;
margin-top:... |
Forum: HTML and CSS Jun 22nd, 2006 |
| Replies: 1 Views: 1,895 Re: iframe scrolling help I am not sure if this is your problem, but there is a 'feature' in internet explorer: special objects, like iframes, select boxes, appear in a different 'layer' to other objects.
It seems strange... |
Forum: JavaScript / DHTML / AJAX Jun 22nd, 2006 |
| Replies: 13 Views: 2,955 Re: Help modify some JavaScript/HTML That's cool, I get bored at work. as a rule of thumb, the easier it is for people to access the problem, the easier it is for them to help.
If I can glance at the code and see I can paste it into a... |
Forum: JavaScript / DHTML / AJAX Jun 22nd, 2006 |
| Replies: 13 Views: 2,955 Re: Help modify some JavaScript/HTML <html>
<head></head>
<body>
<script language="javascript" type="text/javascript">
var set_action = "";
var set_path = "images/";
var set_id="<!--%ID%-->";
var set_spacer =... |