15,120 Topics

Member Avatar for
Member Avatar for karthik_ppts

Hi Frendz, I'm using the following code for generating the alert message. [CODE=php]echo '<script>alert("Your project has timed out. Contact your project Manager")</script>';[/CODE] Its working fine in my local server. But in online server its not working. whats going wrong with this?

Member Avatar for P0lT10n
0
174
Member Avatar for urtrivedi

Dear friends I need free vertical tree menu as shown in the link (green one) [url]http://dhtml-menu.com/menu/dhtml-floating-menu-sample.html[/url] I have heard something related to FISH, fishmenu or starfish menu, I am not sure. I have seen some fish named menu, but now I am not able to find that link or forgot …

Member Avatar for urtrivedi
0
154
Member Avatar for vaanipala

Hi, I'm new to AJAX and i'm trying to make my first AJAX request response program work. My code works fine in Mozilla Firefox. However, it is not working in IE9. The following is the result i'm getting in IE9: today is July 11, 2011, 10:55 am Notice: Use of …

Member Avatar for vaanipala
0
132
Member Avatar for serdas

[ICODE]function updateStatusViaJavascriptAPICalling(){ var status = document.getElementById('status').value; FB.api('/me/feed', 'post', { message: status }, function(response) { if (!response || response.error) { alert('Error occured'); } else { alert('Status updated Successfully'); } }); }[/ICODE] hi this is what i understand in the above code if there is an error it shows "Error occured" if …

0
69
Member Avatar for mcwebalizer

Where I can find Google Maps with route creator, object point and description tutorial? i mean this for make travel maps. I Would integrate these maps with these options in my Website.

0
117
Member Avatar for Moderns

Hi Mates, Actually the below code only creates dynamic DIV in IE, but for Firefox it does not create any DIV. Also it does not create the event onclick to be triggered when clicking on any area inside the DIV. I want to create dynamic DIV in firefox and IE …

Member Avatar for momonq1990
0
2K
Member Avatar for f_atencia

I'm trying to get the properties for the following objects: 0: [object Object] 1: [object Object] 2: [object Object] 3: [object Object] This was generated by using the following code: [CODE] var s = ""; for (var property in this.oProducts.Product) { s = s + "\n "+property +": " + …

Member Avatar for Airshow
0
77
Member Avatar for Pavlos1316

Hello, I am trying to update my PHP CART without having the page refreshed! Here is a part of my code... I will just use the UPDATE_QUANTITY part (there are ADD & Remove) My Form that holds the quantity: [CODE]<form name="upd_itm" id="upd_itm" action="cart_function.php" method="post"> <span class="text"><input name="quantity" type="text" value="' . …

Member Avatar for divyakrishnan
0
88
Member Avatar for zjbarden

I'm currently in progress of designing a web platform in regards to a personal project of mine, and came upon a frustrating conflict in my script. I am using DHTML windows and a CSS Fisheye Dock Menu, and when I click on a dock item to load a DHTML window, …

Member Avatar for Airshow
0
235
Member Avatar for xagutxu

Hello, everyone! I have a problem with the code of Javascript, and I cannot find out the solution. I write a form in a div in this way: [CODE]var divTag = document.createElement("div"); divTag.id = "ch00"; divTag.className = "chzerr"; divTag.innerHTML = '<form action="foo.php" method="post" name="leh00" onsubmit="change_alert()">'; divTag.innerHTML += '<input type="hidden" name="usr00" …

Member Avatar for Airshow
0
1K
Member Avatar for destroyerx15

i have table with 3 column i want the col3 to be hidden by onload when open the web so is there away to make it because in tutorial only shown by onclick

Member Avatar for Airshow
0
65
Member Avatar for 7kemZmani

I create a table that contain rows and on last 'td' on each row there is an 'img' to insert new row onClick="addRow()". I want this new row to insert below clicked row. Clearly, if i have row X and row Y and i click on the 'img' on X …

Member Avatar for Airshow
0
280
Member Avatar for 080346

Hello everybody m trying to pass a parameter to my controller.php from javascript but it doesn't passing and give me error of undefined URL kindly help me i shall be thankful to you...Here is my code function JSfunction(assetid) { window.location="controller.php?command=delete&assetid=".assetid; }

Member Avatar for Airshow
0
109
Member Avatar for apanimesh061

[CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>3D Tag Cloud</title> <style type="text/css"> body{ background:#DDD; color:#000; } a{ color:#009; } a:hover{color:#00F;} address { font-family:Georgia; font-style:normal; text-align:right; } #tagcloud{ background:#FFF; border:1px solid #000; font:14px Verdana,sans-serif; height:400px; overflow:hidden; position:relative; width:400px; } #tagcloud ul,#tagcloud li{ list-style:none; margin:0; padding:0; } …

Member Avatar for Airshow
0
195
Member Avatar for haranaboy

[CODE]<html> <head> <script type="text/javascript"> function test (){ //refer tst to a new Objy object. var tst = new Objy(); alert(tst.display()); } function Objy(){ try{ this.prototype.display= function() { this.text="yoyo"; }; } catch (err){ alert (err); } } </script> </head> <body onload="Javascript: test()"> <div id="display" > </div> </body> </html>[/CODE] Hi, I'm basically …

Member Avatar for haranaboy
0
139
Member Avatar for jacob21

Hi,I am new to jquery.i want to create a jquery form When i click form link,form will open & background color change to white. Need suggestion

Member Avatar for jacob21
0
73
Member Avatar for extemer

hello guys i am up to a task. i want to add a functionality to my form that when the city in given in the address field it can be viewed in google map application.For this i had found design a image so that when location is specified in the …

Member Avatar for extemer
0
141
Member Avatar for newbie14

Dear All, I got a page here [url]http://183.78.169.53/tyre2/page2.html[/url]. What I would like to do is enable swapping between the black images? I would like to drag and drop to another image and that image will fill up the dragged earlier image position? Any idea?

0
56
Member Avatar for Behseini

Hi everyone, I am new at Jquery and JavaScript as well and I really appreciate if you can help me to figure it out how I can check a state of slideToggle()? for example, I am trying to modify the following code when a user click the Register then first …

Member Avatar for Behseini
0
150
Member Avatar for vaultdweller123

Hey guys, anyone know how to change facebook plugin like button, text "like" to a custom text? thanks in advance

0
71
Member Avatar for apanimesh061

[CODE] function getAjax() { var XmlHttp; //Creating object of XMLHTTP in IE try { XmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { XmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (oc) { XmlHttp = null; } } //Creating object of XMLHTTP in Browers other than IE if (!XmlHttp && typeof …

Member Avatar for diafol
0
145
Member Avatar for guillem_bcn

hi, i want to alert (javascript dialog) after user clicks the submit button, then process it with php and then show the alert after the body has reloaded (same body after post, just calling the same page. the easy thing to be done, but i'm going mad with it, is …

Member Avatar for guillem_bcn
0
5K
Member Avatar for extemer

Ok, I have a student form which will be filled by operator. I want a small image to be displayed in a frame in the form when the operator brows the image each time he/she fill new student form. Guys my JS isn't brilliant.

Member Avatar for stbuchok
0
84
Member Avatar for jatpatel1

Hi there, I was wondering if anyone can resolve my problem. Just to give you a heads up. I have a page with many input fields like textboxes, select etc. All these input fields are on one line in a table row. The number of rows depends on the amount …

Member Avatar for Troy III
0
341
Member Avatar for Ritesh_4

Hello Am trying to implement something similar to this page, [url]http://www.k-optisports.ch/fr/optic/team.html[/url], whereby hovering on an image changes it to display the user's details. anyone can pls help me with finding a tutorial or pre-built gallery using such type of effect?

Member Avatar for Ritesh_4
0
95
Member Avatar for lmddigital

I'd like to modify a form on [url]www.formsite.com[/url] (form builder app): username: testuser password: password I would like to use the nicedit.com's inline content editor's js to transform my textarea's into a richtext area. At present the nicedit editor works well in creating the richtextarea. However, the KEY point is …

0
97
Member Avatar for drewpark88

Hey guys, I am new to JS/Ajax and would love some help if possible. I am not sure how to POST my form using Ajax rather than using the action="http://example/api/register_user.php" on the form to post form fields then display the response from the URL. If I post the from using …

0
68
Member Avatar for attism

I want to create a dropdown menu in my main menu. It should look like this: [URL="http://www.freeimagehosting.net/uploads/73ebcb47c3.jpg"]LINK to the photo[/URL] But I don't know how to get it work, that it should count the links (categories) inside the menu. If its more than 6, than it should put the 7th, …

Member Avatar for attism
0
229
Member Avatar for AjithAnnadurai

hi friends , i found a code for tamil language comment box in blogger and also its executed successfully but one problem i cant post a comment . only box alone coming in this code . please check it and give me a proper code . [CODE] <script src="https://www.google.com/jsapi" type="text/javascript"> …

Member Avatar for AjithAnnadurai
0
336
Member Avatar for Julia25

Hello there! im having problem on adding dropdown menu (like the nav in this site) in a dynamic site(templated) which i cannot access the html (like ul, li or adding class) and i was thinking is it possible to create a javascript dropdown menu for this? which add drodown menu …

Member Avatar for Julia25
0
133

The End.