Forum: Geeks' Lounge 2 Days Ago |
| Replies: 1,440 Views: 66,363 |
Forum: JavaScript / DHTML / AJAX 4 Days Ago |
| Replies: 4 Views: 225 Re: JavaScript posting data <script type="text/javascript">
document.getElementsByName('rand')[0].value = document.getElementsByName('main')[0].src;
</script>
The function getElementsByName returns a nodelist i.e. an array of... |
Forum: JavaScript / DHTML / AJAX 6 Days Ago |
| Replies: 2 Views: 191 Re: write xy coords If you want to share something good with the others out there, we have a code snippets section (http://www.daniweb.com/code/javascript.html). Threads posted in normal forums end up getting lost in... |
Forum: JSP 7 Days Ago |
| Replies: 2 Views: 210 Re: Remotely Invoked Methods and JSP The error "MyRemote cannot be resolved to a type." seems to be pretty straightforward; you need to include the 'MyRemote' class in your JSP for it to successfully compile. I know this advice would... |
Forum: JavaScript / DHTML / AJAX 7 Days Ago |
| Replies: 4 Views: 231 Re: How to stop errors from popping up > I know this great way of stopping those annoying errors that just keep popping up
Javascript has support for exception handling, using it properly would give rise to a robust design. Also it seems... |
Forum: JavaScript / DHTML / AJAX 7 Days Ago |
| Replies: 6 Views: 588 |
Forum: JavaScript / DHTML / AJAX 9 Days Ago |
| Replies: 5 Views: 431 Re: Data Type > If I have a variable named X , and this virable hold some data , how can I know
> the Type for that data
The typeof operator should make things a bit easier for you. Try this:
<script... |
Forum: JavaScript / DHTML / AJAX 9 Days Ago |
| Replies: 2 Views: 375 Re: Dalying Javascript code execution order Place the block of Javascript code *after* the DIV tag and things should work out fine. It problems still persist, consider attaching a listener to the onload event handler of the window object which... |
Forum: JavaScript / DHTML / AJAX 9 Days Ago |
| Replies: 6 Views: 323 Re: HTML title image Your issue has got nothing to do with Javascript; it is handled when deploying your web application on the web server / container of your choice by means of a configuration file. Consult your web... |
Forum: JavaScript / DHTML / AJAX 9 Days Ago |
| Replies: 6 Views: 588 |
Forum: Java 11 Days Ago |
| Replies: 13 Views: 352 Re: Problem in creating a jar file There are at least millions of threads (http://forum.java.sun.com/thread.jspa?threadID=642042&messageID=10137425) out there providing a proper solution to the same problem; maybe doing a bit of... |
Forum: JSP 12 Days Ago |
| Replies: 3 Views: 247 Re: SQL Query problem > but I dont know why JSP gives this result :
Maybe because "KodeAlbum" actually contains "000002-0015"? It would be better if you printed out the value of the form field "KodeAlbum" after form... |
Forum: JavaScript / DHTML / AJAX 12 Days Ago |
| Replies: 4 Views: 667 |
Forum: Geeks' Lounge 13 Days Ago |
| Replies: 54 Views: 1,546 Re: 1,000 Post > i should get a prise.
Good idea; we are already in the process of getting hold of a unique spell / grammar checker which would automatically rectify spelling / punctuation mistakes in posts. ;-) |
Forum: Assembly 13 Days Ago |
| Replies: 3 Views: 229 Re: file problem Phew! Next time make sure you attach your code instead of dumping the entire 1.6K line thing on the message boards. |
Forum: JavaScript / DHTML / AJAX 13 Days Ago |
| Replies: 4 Views: 512 Re: image rollover > but still need to find out how
Find out how to preload images? Google has a lot of helpful links (http://articles.techrepublic.com.com/5100-10878_11-5214317.html)to get you started. If you still... |
Forum: JavaScript / DHTML / AJAX 14 Days Ago |
| Replies: 4 Views: 512 Re: image rollover According to the HTML 4.01 specification:
Plus NAME attribute is deprecated for *non-form* elements; use ID instead. And a better way to access images would be document.images["imageId"]. Also, are... |
Forum: JavaScript / DHTML / AJAX 14 Days Ago |
| Replies: 4 Views: 667 |
Forum: JavaScript / DHTML / AJAX 14 Days Ago |
| Replies: 1 Views: 245 Re: sifr and javascript Your question would be more pertinent in the SIFR forums (http://discuss.joyent.com/viewforum.php?id=20) than here. |
Forum: JavaScript / DHTML / AJAX 14 Days Ago |
| Replies: 9 Views: 368 Re: onClick question Just rinse and repeat.
<html>
<body>
<div
style="border-color:#000000; background-color:#000000; height:100px; width:100px; position:absolute; top:0px; left:50px;
z-index:9"... |
Forum: JavaScript / DHTML / AJAX 14 Days Ago |
| Replies: 5 Views: 381 Re: Problem in my sliding div...plz help.... You need to toggle the rendering and not visibility. Even invisible elements takes up space on the page. Use the "display" property to create invisible elements that do not take up space.
<div... |
Forum: JavaScript / DHTML / AJAX 14 Days Ago |
| Replies: 2 Views: 266 |
Forum: JavaScript / DHTML / AJAX 14 Days Ago |
| Replies: 9 Views: 368 Re: onClick question > Ok so here is the code I am using and all I am getting is a blank page.
A few things:
- window.location is a host object (browser object); what you probably need to do here is... |
Forum: JSP 14 Days Ago |
| Replies: 3 Views: 280 Re: Problem With Hover Button There can be a host of problems / reasons causing that message to come up. Is the applet working in standalone mode? Which version of Java are you using? What is the directory structure of your... |
Forum: JSP 15 Days Ago |
| Replies: 11 Views: 573 |
Forum: JSP 15 Days Ago |
| Replies: 2 Views: 233 |
Forum: JSP 15 Days Ago |
| Replies: 3 Views: 280 Re: Problem With Hover Button Look closely at the code you have written. The tag <jsp:param> doesn't have a body and hence should be written as one. Leaving them open is what is causing the problems here. It should be: (notice... |
Forum: Java 15 Days Ago |
| Replies: 8 Views: 3,751 |
Forum: JSP 15 Days Ago |
| Replies: 8 Views: 361 |
Forum: DaniWeb Community Feedback 15 Days Ago |
| Replies: 96 Views: 2,400 Re: What pisses you off? > yeah sometimes i do say things like "i agree" but hey, thats how a conversation works
Maybe in the Geek's Lounge, yes, but definitely not for Tech related threads. IMO such monosyllables when used... |
Forum: Java 15 Days Ago |
| Replies: 5 Views: 280 |
Forum: JSP 16 Days Ago |
| Replies: 7 Views: 285 |
Forum: JSP 16 Days Ago |
| Replies: 8 Views: 361 |
Forum: JSP 16 Days Ago |
| Replies: 6 Views: 508 |
Forum: JavaScript / DHTML / AJAX 16 Days Ago |
| Replies: 1 Views: 295 Re: Drop Down box AJAX Start off with the Sun J2EE tutorials (http://java.sun.com/javaee/reference/) which cover almost everything you need to complete this project along with a lot of sample code. |
Forum: Geeks' Lounge 16 Days Ago |
| Replies: 1,440 Views: 66,363 Re: Collins: Why this scientist believes in God WTH has Santa got to do with 'Why this scientist believes in God' topic? Just because this thread has got a 'GOD' in it doesn't mean you go around resurrecting 3 month old threads just for the sake... |
Forum: JavaScript / DHTML / AJAX 17 Days Ago |
| Replies: 6 Views: 953 Re: Dynamic Div Name getElementById > You can't use getElementById to access elements added by a script.
Bosh. Please verify the facts before stating something.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
... |
Forum: JavaScript / DHTML / AJAX 17 Days Ago |
| Replies: 5 Views: 586 Re: Need Javascript calendar?? There are many free / open source Javascript calendars out there. Just key in 'Javascript calendar' in Google and you would be a few steps away from getting one... |
Forum: JavaScript / DHTML / AJAX 17 Days Ago |
| Replies: 7 Views: 614 Re: HTML Please explain your problem in a better manner. If there is a server side processing involved when interacting with the HTML control, then yes, you can write whatever data is present in the form... |
Forum: JavaScript / DHTML / AJAX 17 Days Ago |
| Replies: 2 Views: 330 |