Search Results

Showing results 1 to 40 of 143
Search took 0.03 seconds.
Search: Posts Made By: DangerDev ; Forum: JavaScript / DHTML / AJAX and child forums
Forum: JavaScript / DHTML / AJAX Nov 5th, 2009
Replies: 3
Views: 402
Posted By DangerDev
the way you are using clearInterval is not correct.
its should be something like this:

var t;
//to start
t=setTimeout("someFunction()",1000);
//to stop
clearTimeout(t);
Forum: JavaScript / DHTML / AJAX Oct 9th, 2009
Replies: 2
Views: 336
Posted By DangerDev
i guess this would help you:
http://punbb.informer.com/forums/topic/17351/how-to-add-a-font-file-to-my-website/
Forum: JavaScript / DHTML / AJAX Aug 11th, 2009
Replies: 5
Views: 336
Posted By DangerDev
If by saying forum you mean forum and if you need to develop a forum ( like daniweb etc.), then you have to store data some where, and in present era data base is the best option, so you need data...
Forum: JavaScript / DHTML / AJAX Aug 11th, 2009
Replies: 5
Views: 336
Posted By DangerDev
then how you are going to store data?
what kind of forum it will be?
Forum: JavaScript / DHTML / AJAX Aug 11th, 2009
Replies: 5
Views: 336
Posted By DangerDev
Can you elaborate your question?
Don't you want to use ASP or any server side language?

you can go for PHP as server side language and MySQL as Database.
Forum: JavaScript / DHTML / AJAX Aug 5th, 2009
Replies: 3
Views: 272
Posted By DangerDev
i thing it should be like:

var objBall = new ImageDeneme("abc.gif", 0, 0, visible);


just use firebug to fine out what objBall. contains.
Forum: JavaScript / DHTML / AJAX Aug 5th, 2009
Replies: 3
Views: 298
Posted By DangerDev
1. Develop a small site.
2. Start adding functionality.

You can take any existing site to redevelop. May be you can develop this (http://www.daniweb.com) one :).
hay not kidding, just start at...
Forum: JavaScript / DHTML / AJAX Aug 2nd, 2009
Replies: 1
Views: 196
Posted By DangerDev
Hi,
First you need to learn basics of Ajax, please take help of w3school (http://www.w3schools.com/Ajax/Default.Asp).
Forum: JavaScript / DHTML / AJAX Aug 1st, 2009
Replies: 2
Views: 428
Posted By DangerDev
I'll suggest you to send only the part of page B, which you want to display in page A.
Or please let us know why it is necessary for you to send entire content of page B during ajax request.
Forum: JavaScript / DHTML / AJAX Jul 24th, 2009
Replies: 5
Views: 313
Posted By DangerDev
this should serve the purpose:

if (!valfield == "") {
if (yfld<4) {
msg (infofield, "warn", "ERROR: Please insert 4 digits");
setfocus(valfield);
} else if (yfld>4) {
msg...
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2009
Replies: 1
Views: 649
Posted By DangerDev
actually what you want to do?
normally you use dll at server side, java script is client side technology.
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2009
Replies: 4
Views: 546
Posted By DangerDev
Hi,
Use Firebug to find the problem. Its best way to debug JavaScript.
Forum: JavaScript / DHTML / AJAX Feb 10th, 2009
Replies: 3
Views: 748
Posted By DangerDev
use an image element insied the bigger cell:



then set


it will work
Forum: JavaScript / DHTML / AJAX Feb 9th, 2009
Replies: 3
Views: 1,609
Posted By DangerDev
according to your query above suggestion seems ok, but i think you wanted to ask " suggestion in dropdown box, as it is in google suggesion", isnt it?
Forum: JavaScript / DHTML / AJAX Jan 29th, 2009
Replies: 1
Views: 1,066
Posted By DangerDev
is it question related to javascript? can you explain it more?
Forum: JavaScript / DHTML / AJAX Jan 29th, 2009
Replies: 2
Views: 1,241
Posted By DangerDev
You can not refresh the div element alone. You can make the require change in div element, dynamically using JavaScript, which is like refreshing the div.
Forum: JavaScript / DHTML / AJAX Jan 21st, 2009
Replies: 1
Views: 1,039
Posted By DangerDev
Hi,
"SaveAs" has not been implemented in Mozilla, it will work in IE by interfacing via ActiveX.
See the document.execCommand reference. here...
Forum: JavaScript / DHTML / AJAX Nov 22nd, 2008
Replies: 5
Views: 1,944
Posted By DangerDev
Hi,
define a new array with function: arr3=new Array(no_of_element);
then use for loop to populate member of both array in to it as u want.

use arr_var[index] to access individual member of...
Forum: JavaScript / DHTML / AJAX Sep 2nd, 2008
Replies: 6
Views: 2,820
Posted By DangerDev
one more thing no two element can have same id.

now problem in logic:
just check

if(str==i){
i=i+1;

....isn't it should be in circle, i.e. after 2 again 0 should come, i am just giving a...
Forum: JavaScript / DHTML / AJAX Sep 2nd, 2008
Replies: 6
Views: 2,820
Posted By DangerDev
first problem i see is you have not defined a id property for radio button,
you can not get an element of name say "name1" by function GetElementById("name1").
Forum: JavaScript / DHTML / AJAX Sep 2nd, 2008
Replies: 6
Views: 2,820
Posted By DangerDev
is it html code or some other language code.
if possible please post html code for your radio button along with javaScript.
Please use code tag
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 18
Views: 2,929
Posted By DangerDev
yes i got it, i just forgot it, any way thanks,,,
then there is no problem at all, you can check at server side the name of button and on the base of this you can have intended functionality.....
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 18
Views: 2,929
Posted By DangerDev
yes it is correct, but when you are submitting how you are making difference at server side(of which button user has clicked), if you have problem in that see my suggested solution....
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 18
Views: 2,929
Posted By DangerDev
Hi,
you cant have two submit button on one form, do one thing:
have two simple button< input type="button" value="delete"......> and have on hidden field in form with name "task".On onclick event...
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 9
Views: 5,023
Posted By DangerDev
Hi,
Compare this code with yours, its working perfactly in my system in IE 6:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 4
Views: 6,545
Posted By DangerDev
hi
use javaScript as follows:
<a href="#" onmouseover="javascript:fun1();" onmouseout="javascript:fun2()">Links</a>
where inside fun1() put...
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 2
Views: 1,970
Posted By DangerDev
images are like binary data, why you want to varify that, you just varify user.....is tahat your question, or you need to elaborate it more ?
Forum: JavaScript / DHTML / AJAX Apr 3rd, 2008
Replies: 9
Views: 5,023
Posted By DangerDev
did you do like this:

<div id="inner_main_info">
<div id="ebook_description"></div>
</div>


its working fine in my system in IE 6
Forum: JavaScript / DHTML / AJAX Apr 2nd, 2008
Replies: 9
Views: 5,023
Posted By DangerDev
hi,
convert:
<p id="ebook_description"></p>
to:
<div id="ebook_description"></div>

its working !!!
(i dont know the reason :), any way your work is done right? )
Forum: JavaScript / DHTML / AJAX Apr 2nd, 2008
Replies: 9
Views: 5,023
Posted By DangerDev
can you post that portion of code ?
Forum: JavaScript / DHTML / AJAX Apr 2nd, 2008
Replies: 4
Views: 1,780
Posted By DangerDev
you can store that object in data base. and later you can retrive it.

why actually you want to do that ?
Forum: JavaScript / DHTML / AJAX Mar 18th, 2008
Replies: 2
Views: 885
Posted By DangerDev
window.event is supported only in IE not in other browsers.
I guess you'll be calling some function on mouseover to the "Admission"
just post that code.
Forum: JavaScript / DHTML / AJAX Mar 17th, 2008
Replies: 1
Views: 644
Posted By DangerDev
you can do that using dom apis.
just use-

var new_elem = document.createElement('tag_name');
var elem=document.getElementById("id");
elem.appendChild(new_elem);

this is just a pointer...
Forum: JavaScript / DHTML / AJAX Mar 17th, 2008
Replies: 2
Views: 1,072
Posted By DangerDev
Hi,
using window.opener you can refer to the window which has created the popup window.

on a particular event use window.opener to refer parent, in popup window.
use
...
Forum: JavaScript / DHTML / AJAX Mar 17th, 2008
Replies: 2
Views: 4,306
Posted By DangerDev
hi,
Post your html code also or atleast describe what is prodsearch, and other var used in javaScript.
One more important thing, dont rely upon javaScript alone for validation, write server side...
Forum: JavaScript / DHTML / AJAX Mar 17th, 2008
Replies: 9
Views: 3,594
Posted By DangerDev
Hi,
Can you please describe your problem properly ?
It will help every one to understand your problem.
Forum: JavaScript / DHTML / AJAX Mar 13th, 2008
Replies: 14
Solved: file upload
Views: 5,189
Posted By DangerDev
try to use code what i have posted just above your post,
i think you need to give action on form, remove src from iframe.
Forum: JavaScript / DHTML / AJAX Mar 13th, 2008
Replies: 14
Solved: file upload
Views: 5,189
Posted By DangerDev
can you post your code here ?
are you trying like following ?

<form name="form1" action="url_here" method="post" target="hidden_form">
<input type="text" />
<input type="submit"...
Forum: JavaScript / DHTML / AJAX Mar 13th, 2008
Replies: 10
Views: 2,569
Posted By DangerDev
yah it means its working now.


thats bcoz you have fixed the width in IE.



coz different browser behaves differently !!!

Have a nice time !!!
Forum: JavaScript / DHTML / AJAX Mar 13th, 2008
Replies: 10
Views: 2,569
Posted By DangerDev
Hi,
I am testing in IE 6 and opera.
try to test in other machine and other browser also.
try to test just my code without adding any other tag or code. if you are adding post code here.
Showing results 1 to 40 of 143

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC