User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 373,890 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,813 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 182
Search took 0.02 seconds.
Posts Made By: alpha_foobar
Forum: JavaScript / DHTML / AJAX Sep 22nd, 2007
Replies: 7
Views: 1,150
Posted By alpha_foobar
Re: how i m putting java script in my blog

Hi,
Another file would probably work. Unless it is a naming clash.

But try putting it in a JS file and linking to it from your blog.
Cheers,
Alpha
Forum: JavaScript / DHTML / AJAX Sep 22nd, 2007
Replies: 5
Views: 841
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
Re: building instant messenger

Also Freelancer.com
Forum: Java Sep 18th, 2007
Replies: 1
Views: 403
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
Re: debugging JNI application

Cheers vvl,
I am looking forward to getting an opportunity to use that!
Forum: JavaScript / DHTML / AJAX Sep 16th, 2007
Replies: 1
Views: 795
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
Re: Urgent : Need Help !!!

Hi, instead of a zip file - could you just post the code?
Forum: JavaScript / DHTML / AJAX May 24th, 2007
Replies: 5
Views: 1,776
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
Re: Dynamic population of second list box based on the selection of first list box fr

Hi,
There are many ways you could solve this issue and depending on your target audience, you may have to implement more than one solution.

A favourite approach is to use an AJAX solution. This...
Forum: JSP May 1st, 2007
Replies: 2
Views: 1,072
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
Re: problem with headers and streams

Some C++ compilers do not require IO imports to include cin/cout. The same is true with some C compilers and printf etc.
Forum: JavaScript / DHTML / AJAX Jul 30th, 2006
Replies: 4
Views: 4,370
Posted By alpha_foobar
Re: Javascript/CSS Problem: Display is not properly hiding items (style.display="none")

Sorry, the second tbody is the rest of the table.. my bad.

This all seems over complicated, why don't you use one table... or better, no tables? Then just show and hide div elements?
Forum: JavaScript / DHTML / AJAX Jul 30th, 2006
Replies: 4
Views: 4,370
Posted By alpha_foobar
Re: Javascript/CSS Problem: Display is not properly hiding items (style.display="none")

I think you have forgotten to close the second tbody - this could cause your issue.
Forum: HTML and CSS Jul 13th, 2006
Replies: 1
Views: 1,429
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
Re: What is the function to recognize 8 & 9 as "8" & "9"?

The default system is decimal, but if you put a '0' in front of your number it is Octal. But you would need to do your assignments without the string operator for this to take effect.

Read this:...
Forum: JavaScript / DHTML / AJAX Jun 28th, 2006
Replies: 13
Views: 18,553
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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
Posted By alpha_foobar
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 =...
Showing results 1 to 40 of 182

 
All times are GMT -4. The time now is 4:21 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC