15,694 Topics

Member Avatar for
Member Avatar for Lalit Chattar
Member Avatar for rayarman

Hi, I have the following HTML code: [code] <form> <label for="searchtxt">Find a Question...</label> <input type="text" name="searchtxt" id="searchtxt" maxlength="200" size="92" /> <input type="submit" id="searchsbmt" name="searchsbmt" value="Search" onclick="return getquestions(0,5);" /> </form> [/code] the function getquestions is sending some variables via ajax and returning to populate a div. when it finishes, it returns …

Member Avatar for Graphix
0
331
Member Avatar for saraahparveen
Member Avatar for madmonkey
0
52
Member Avatar for shiv0013

can we overwrite a javascript function in address bar? if so give me an example plz....

Member Avatar for almostbob
0
53
Member Avatar for fielding

Howdy, I'm trying to hide a few css elements until a form has been completed. We have a ecommerce site we need to hide the price and 'add to cart' until the user has submitted their e-mail in a text form. Any help would be appreciated!

0
57
Member Avatar for fielding

How do i go about making these multiple scripts work on a single page? [CODE] $(document).ready(function() { var str = ""; $("select option:selected").each(function () { str += $(this).text() + " "; }); $(".display_text_here").text(str); }) .change();[/CODE] This one i would like an IE conditional [CODE]$(document).ready(function() { $(".select") .mouseover(function(){ $(this) .data("origWidth", $(this).css("width")) …

Member Avatar for fielding
0
90
Member Avatar for barryw33

Hi, I am trying to sign off a website but have one final obstacle to overcome and then all good. the problem I have is I have private chat on a dating website. the site is in russian and english. the php page for the chat needs headers so that …

Member Avatar for barryw33
0
143
Member Avatar for jaydee123

I have a very simple flash program that plays music. It consists of a play pause button and a timer that shows the current position of the song. I'm trying to make it possible to pause or play the song using a regular form button. [CODE]<div class="musicplayer_playpause"> <script type="text/javascript"> AC_FL_RunContent( …

Member Avatar for ShawnCplus
0
102
Member Avatar for canadatom

Hi Guys, I am new to Ajax, I am trying to output results by using perl script calling from Ajax, [code] function launcher(){ new Ajax.Request(getLauncherPath, { method:'post', parameters: { tag: "yadayada", uid: "12345", pwd: "blah", action : "blah" }, onInteractive: function(transport){ var response = transport.responseText; $('launcher').update(response); }, onFailure: function(){ alert('Something …

0
41
Member Avatar for preetg

hi............ m using javascript and css for creating horizontal menu for my project.... but i m facing prob regarding their direction..... i want sub menu should open in right direction but not below the main menu items. ........ help me out. [CODE=javascript] var cssmenuids=["cssmenu1"] //Enter id(s) of CSS Horizontal UL …

0
78
Member Avatar for hno

HI I have seen this pattern in [url]http://www.altsoftware.com/index.php[/url] . there are news menu in the left side . Please visit this site . The news will be change with a really beautiful pattern in every 5 seconds I think it has been written with jquery but I don't know how …

Member Avatar for macneato
0
76
Member Avatar for Corbula

I have made a table and am able to sort the contents of it, using yoast's table sorting. ([url]http://yoast.com/articles/sortable-table/[/url]), (althought i used a different script because the yoast script didn't sort numbers very well). But now i need to know if it's possible to make it so when you click …

0
86
Member Avatar for preetg

hi............. m inserted records in database successfully but now i want that whenever record added in database a dialog box will be shown on the screen.............. " RECORD ADDED" m using javascript code for this but it is not working............ plz help me to do this ............. <HTML> <HEAD> <TITLE>Apprentice …

Member Avatar for phpbeginners
0
218
Member Avatar for Venom Rush

Hi all I have a form where a user can upload a file. I do a check to see if it's a zip file. If it isn't then its supposed to stop the file from being uploaded. Only thing is, the file still uploads regardless of getting the error or …

Member Avatar for Venom Rush
0
94
Member Avatar for ranjita.cdt.esg

Hope i have posted the mail in the rite place. what I have done so far is: 1>I use Borland C++ Builder Version 5. 2>I use TCppWebBrowser which can access a website. which could be done through any browser outside my application.So no point in what i have achieved till …

0
61
Member Avatar for ranjita.cdt.esg

Hope i have posted the mail in the rite place. I need to know the google map API to save maps to a folder. My borland c++ application should in the background download the map according to a gps latitude longitude and save the map in a folder. There is …

0
63
Member Avatar for mahdiahmadirad

[B]How to Change default settings for ACT HTML Editor?[/B] I want to load editor with for example Selected Bold Button or with rtl direction instead of ltr defaultly. How can I perform that? I overrided FillTopToolbar() method to add Custom buttons but I dont Know how to change default settings. …

Member Avatar for ghmcadams
0
94
Member Avatar for zodiacfive

How can i pass POST [] array to jquery. Am using the code. var test = $("#content").val(); var dataString = 'content='+ test; if(test=='') { alert("Please Enter Some Text"); } else { $("#flash").show(); $("#flash").fadeIn(400).html('<img src="ajax-loader.gif" align="absmiddle"> <span class="loading">Loading Comment...</span>'); $.ajax({ type: "POST", url: "demo_insert.php", data: dataString, cache: false, Here only one …

Member Avatar for FlashCreations
0
59
Member Avatar for Heinz Stapff

[B]NEED INPUT VALUES TO MATCH ARGS ARRAY OR THROW AN ALERT[/B] This is what I have but I want the alert to refrence the var args= or throw the alert. [code] function qtymultiply(qty){ var fs=qty.parentNode.parentNode; var subtotal=document.getElementById('subtotal'); var args=[1,2,4,6,8,10,20]; [COLOR=darkorange]//array I need to match foreach element[/COLOR] var multiply=0.0; var price=fs.cells[4].innerHTML; …

Member Avatar for Heinz Stapff
0
111
Member Avatar for axn

Can you execute a ksh script within javascript? Inside my js function I have window.open("http://myhomepage.com:12345/Home/bin/ksh/" "Page Name", width=470,height=452"); ksh script should return output which the js function should display.

0
70
Member Avatar for Ana_Developer

I want to call a javasript function once a checkbox is checked and then enable a button in the function. How can I assign the javascript function to the check box event? Thanks!

Member Avatar for apegram
0
127
Member Avatar for paulernest

Hi I was wondering if there is a standard way to set a time out for ajax callbacks. The problem seems such an obvious one I know that it will have been solved several times. I'm using the google maps and google local api's and I want to wrap my …

Member Avatar for paulernest
0
91
Member Avatar for Traicey

I have 2 forms, 1 with a datagrid and the other with textboxes and Dropdown lists, etc. I have a code that highlight and select a row in a datagrid and opens the second form, this is done in Javascript, so now what I need is a code to be …

0
57
Member Avatar for achiman

Please can anyone tell me how to write a program that will auto suggest or auto complete a search word from a MSAccess database using PHP and Ajax. Thanks

Member Avatar for Thirusha
0
48
Member Avatar for xuexue

[code=javascript] function label_parameter(id,ind) { var clicked_row = id; alert(clicked_row); } [/code] is it possible to pass the value of clicked_row to an object in html?? thanks thanks..^^

Member Avatar for phpbeginners
0
150
Member Avatar for JackyRock

Hi Friends, How to create explorer like menu in Html or java script? eg + Game(inside this Cricket and Football) when click on + sign it become like-- - Game -Cricket -Football Can anybody suggest me, by which command I can do it? [url=http://www.bipra.com/cat-684-laptopsdesktoppcs.aspx]Buy Laptop[/url]||[url=http://www.bipra.com/cat-698-externalharddrives.aspx]External Hard Drive[/url]||[url=http://www.bipra.com/cat-801-internalharddrives.aspx]Portable Hard Drive[/url]

Member Avatar for Alison Clarke
0
100
Member Avatar for xuexue

hi! i just want to know, is it possible to pass the value of a variable coming from javascript to php?? knowing that the variable is inside a function?? [code=javascript] function (id,ind) { var clicked_row = id; } [/code] i want to pass the value of clicked_row to php.. thanks …

Member Avatar for xuexue
0
280
Member Avatar for emper

Hey all, im currently developing a S60 widget for Nokia phone. I will demo this widget on the S60 emulator. In order to stimulate the situation, a .nme file is used. Now the problem is , I got no idea when the tracker will move to the destination, because the …

0
47
Member Avatar for Philip435

Hey guys I have a small problem and i hope you can help. Basicly am going to make an search script to my website. Im going to use onkeyup event when the user is writing and my problem is that I wont to make a function that takes in input …

Member Avatar for Philip435
0
143
Member Avatar for eeyc

hii!! i try to post java script function from c# code. i success to make regular post data - like has regular html form pages but i have some troubles to post java script data. mybe i can figure this out with calling to function from address line - if …

Member Avatar for eeyc
0
127

The End.