15,694 Topics

Member Avatar for
Member Avatar for Bar2aYunie

Hello, I am trying to build a combo menu that contains 5 drop down lists and when sombody selects an item from the first drop down menu, new options appear in the second one. People choose an option there, and more options appear in the third one, and so on. …

0
81
Member Avatar for sharao

Plz., how to put javascript validations in jsp page using JQUERY....ONE SAMPLE PRORGRAM and what is the difference between general javascript(regular exp) validations and jquery validations.. thanx & wish u happy new year...

0
54
Member Avatar for Agent Cosmic

How do I start my literal object as a function like you do when you use the new Object method. e.g. var fn = function(){ ...code...} var func = new fn(); I'm trying to achieve this using the literal object method like: var fn ={ key: '' }

Member Avatar for Agent Cosmic
0
70
Member Avatar for zeroge

Hi everyone I have the lightbox working properly on the site but actually want it to pop up/open automatically, say after 2 seconds after the page is loaded and without having to trigger it by klicking a href link. I noticed daniweb has exactly the same function here on this …

Member Avatar for JugglerDrummer
0
77
Member Avatar for ryan1987

hi i am creating a webpage with a menu down the left hand side. depending on which link in the menu you click a table on the right of will show the relavent information. the table will show the relavent information from a mysql table based on the link clicked. …

Member Avatar for ryan1987
0
77
Member Avatar for garyi1308

Hi I'm building a video site for the radio station I work for and need to display a specified video on each refresh. The video will be an embed from youtube and sit in a <div> of it's own. Unfortunately due to the servers I work on I can't user …

Member Avatar for Graphix
0
70
Member Avatar for realmayo

HEllo, Basically I am writing an interface in Adobe AIR with Javascript to talk to my server. I want to do it in HTTPS for security reasons. I generated my SSL certificate and everything. But every action I take to communicate with my server is met with a dialog to …

0
44
Member Avatar for chat2learn

helle everybody, I want to hide the url in the status bar. Once the url is surfed, I want to show a message not the url itself. I know that it should be done using Javascript but I don't how know. can anyone of you help me please ?

Member Avatar for p.loading1
0
94
Member Avatar for jmorhous

Greetings, On reflection I have decided I was unclear in my last post so I thought I should have another go at it. I have written an external script, located in validateform.js, that validates the information on a form. I have a second external script, date.js, that validated dates. I …

Member Avatar for almostbob
0
97
Member Avatar for jrw89

I have the following in "home.html": [CODE=html]<html> <head> <script type="text/javascript" src="sandbox.js"></script> </head> <body onload="compatibilityCheck();"> <div id="content"> <p>You need to enable JavaScript to use this site</p> </div> .....[/CODE] where "sandbox.js" is: [CODE=javascript]function compatibilityCheck() { var compatibilityCheck = new compatibilityCheck; compatibilityCheck.browser; compatibilityCheck.cookies; } var compatibilityCheck { browser : function() { switch(navigator.appName) { …

Member Avatar for jrw89
0
125
Member Avatar for shridharmaster

Hi friends, I have created the no.of div tags in my website applications. Now i want to change the class name of the tags. How should I? Below is some code which i want to change:- <test.aspx> [CODE] <tr> <td style="width:100%;"> <div class="roundedcornr_box_203203"> <div class="roundedcornr_top_203203"><div></div></div> <div class="roundedcornr_content_203203"> <iframe id="Graphframe" name="Graphframe" …

Member Avatar for GreenDay2001
0
114
Member Avatar for Phil++

Hey I'm trying to display this: [code] echo "<a href="javascript:createBBtag('[bold]','[/bold]','txtA')"><strong>B</strong></a>"; [/code] It gives errors though! Is there a way around it? Thanks :)

Member Avatar for goje87
0
27
Member Avatar for SJai

Hi i need the help of how to access the PHP files values from the External JavaScript. I have read we should keep Header("content-type: application/x-javascript"); this line in PHP. I have done everything, if any one can explain this with Example code and please explain how to use the value …

Member Avatar for FlashCreations
0
1K
Member Avatar for beppeilbuono

I would like to print a Web page with javascript method window.print() without pages number and footer. it's possible ?

Member Avatar for jokohu
0
212
Member Avatar for jmorhous

I have an external javascript from which I wish to call a function from another external javascrpt. For the life of me I cannot figure out how to do it. Thanks in advance for the help, Jeff

Member Avatar for SKANK!!!!!
0
67
Member Avatar for vgkarthi

Can any body tell me why my onblur() function is not working in javascript. Code is pretty simple. Its a text box with an onblur() function showing an alert. I have used it long back.. But i could not figure out why its not working now.. I dont know what …

Member Avatar for SKANK!!!!!
0
4K
Member Avatar for shridharmaster

Hello friends, I have been designed the web application using different themes. I have applied the themes successfully. But the problem is that while giving class name to the div tag for the rounded corner to the box with their images is not working properly. Below is my snippet :- …

Member Avatar for Airshow
0
89
Member Avatar for jagadeshms

Dear All Experts I wrote a simple code in javascript and it is working fine with IE and Firefox but the out put in php array count is correct in IE but not correct in Firefox Please check the code attached here. <script language="javascript"> var arrdimensions = { "codimesion":{"s":{'0':'dimesion1','1':'dimesion2','2':'dimesion3','3':'dimesion4','4':'dimesion5','5':'dimesion6','6':'dimesion7'},"c":1,"m":"50", "sc":1, …

Member Avatar for Airshow
0
135
Member Avatar for thetodaisies

Hi, I have an aspx textbox control in my webpage its value is being assigned from javascript. Now once the value is assigned from javascript it returns empty string when tried Textbox.text from c# codebehind on submit. here is the definition of the textbox <asp:TextBox ID="TxtTags" CssClass="TextBoxStyle" runat="server" ReadOnly ="true" …

Member Avatar for thetodaisies
0
59
Member Avatar for jreddick82

I am building a rotating page. For URLs. The problem is that the page does not reload a different URL when you refresh the page, and I want it to load a different URL when someone enters the site. I have tried different coding and nothing seems to work. Here …

Member Avatar for hielo
0
160
Member Avatar for gpmmuthu

Hi all, Suppose, i access the website(Main window), the site will load. Meantime,i want to open a new window (Child window -like a pop up) on the top of the main window. Now,the browser focus on the child window.In the mean time the main window will disable. Please find below …

Member Avatar for gpmmuthu
-2
79
Member Avatar for umut78

I made a code snippet that displays different content based on the browser but, it returns an error and not work. What's wrong here? [code=HTML] <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Language" content="en" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Adsız 1</title> </head> <body style="font-family:Verdana;"> <script type="text/javascript"> [/code] [code=Javascript] if (navigator.appName == …

Member Avatar for ShawnCplus
0
62
Member Avatar for jino

Hi all, I need to select all the divs having the classname starting as msg_body. actually the classname is msg_body_3. The last part of the class name of each div will vary as it is an id. How can i slideup all these divs, class name starting with msg_body using …

Member Avatar for ShawnCplus
0
152
Member Avatar for the_programmer

Hey, I know that Javascript can disable keys on the keyboard and even the right mouse click. What I want to know is, is it internationally legal for a Website to render commands on the keyboard and or mouse useless while using a Website. I'd really appreciate any feedback and …

Member Avatar for JugglerDrummer
0
96
Member Avatar for ytregnn

I don't know if this is the right forum for this question .. I have a script that is written in PHP and in the middle of this: [CODE]<a href=\"#main\" onclick=\"form_visible();\">Click</a>[/CODE] This is supposed to make a form show by a click on the link [I]"Click"[/I]. What I want to …

Member Avatar for parry_kulk
0
56
Member Avatar for kelvin33

[CODE]/*helo every one, I am just a newbie in javascript, but can any one help me with the second function?*/ <html> <head><title>survey2</title> <script type="text/javascript"> var Item = new Array(); Item[100] = 15; Item[101] = 10; Item[102] = 5; Item[103] = 0; function show_it() { var total = 0; var Details …

Member Avatar for Airshow
0
293
Member Avatar for pavithraCS

Hi, Im developing a firefox exrtention which can get weather alerts from various rss feeds and display them in a popup panel. So, I need to know [B]how rss reader know that rss feed has updated[/B]? Do I have to check it using a timer? thanx in advance!

Member Avatar for Airshow
0
81
Member Avatar for jino

Hi everybody, In my project i am using ajax and jquery. After going to a page via ajax without page reload i want to see the same page if the user refresh the browser. I used the cookie plugin inorder to solve. As it is not safe i am trying …

Member Avatar for hielo
0
742
Member Avatar for ytregnn

Hi, I was looking for a poll script (php/ajax) that does not reload when adding a vote. I've tried to search around for it but haven't found one that suits my needs. Anyone that knows where I can find such a script? Thanks, Robin

Member Avatar for SKANK!!!!!
0
164
Member Avatar for tunde011

please open [url]http://www.sharewink.com/[/url] in mozilla and IE search for share Please what am i doing wrong?

Member Avatar for tunde011
0
80

The End.