15,127 Topics

Member Avatar for
Member Avatar for hiyatran

.innerHTML is used when you trigger an event but if you just want to display the text how would you go about do it?? I don't want to used document.writeln because it will "[B]Wipe out all the contents[/B]" of that page. So I have some HTML text and javascript text. …

Member Avatar for LaxLoafer
0
172
Member Avatar for cancer10in

Hi Can someone help me find a script similar to the dropdown search as seen on [URL="http://www.oanda.com/currency/converter/"]http://www.oanda.com/currency/converter/[/URL] where I am able to: 1. search currencies from the list. 2. Scroll through all the currencies with mouse and keyboard UP and DOWN keys. 3. Have a custom scrollbar Many thanks in …

0
107
Member Avatar for cancer10in

Hello All I have been struggling since 2 days with this problem and I hope someone can help me out. I want to have custom scrollbars (like [url]http://jscrollpane.kelvinluck.com/basic.html[/url]) for the jQuery UI Auto-complete plugin. Currently there seems no way to integrate custom scrollbars for jQuery UI Auto-complete plugin. So if …

0
126
Member Avatar for ankit.pandey3

Hi friends.... I have an alert message just like [CODE]alert("Hiii");[/CODE] I want to close it automatically as soon as it appears. It means I don't want to show this alert message to client. Can anyone tell how i can do it??? Please help me...... Thanks in advance.....

Member Avatar for Taywin
0
84
Member Avatar for himmat.m4

Hi, In our project I am using ajax with jquery. here I have applied some code of java script on splitting response which comes from server side. This code is working fine for small data. Whenever same application used for large data, script gives problem. This problem is value is …

Member Avatar for himmat.m4
0
131
Member Avatar for Virangya

hi i made an image slider. it loads all the images from the data base using php and for sliding and timing intervals i used javascrpt and ajax. through back end of the systems can edit these images and upload new , update and delete. i want to reflect the …

0
147
Member Avatar for tonydeleon

Hello Can you please help me with this easy cake, On a form I have 4 listboxes listbox1 listbox2 listbox3 listbox4 What I need is to count the listboxes which values selected are = 1. and display the result in a textbox1 For example : if listbox1 and listbox3 are …

Member Avatar for Taywin
0
91
Member Avatar for praveen_dusari

hi, Iam developing the website in ipad,using html5 database and html5 concepts...i am facing trouble in integrating my website which is developied in php and xslt..here we are using soap to get the articles and displaying it using xslt and php...here iam loading those articles in html5 database in php …

Member Avatar for kws.mumbai
0
153
Member Avatar for Mr. Shannon

Hello, I have been working on a website at my college (not coursework) that uses Pylons and Genshi. To avoid Genshi parsing the JavaScript code in a template I moved the JavaScript to a separate file. The problem is I tried putting the .js file in the templates directory (where …

Member Avatar for Taywin
0
174
Member Avatar for vaitalaziz

Hi ... I'm doing 1 web-system, where login page in .jsp but other functional page in .html where I use javascript to do function. So if user knows any other html page's url then they can browse directly any of those page. But I've to prevent them & send to …

Member Avatar for Taywin
0
310
Member Avatar for piyushsol

[CODE]var val1=document.getElementById("text_1"); var but_val=document.getElementById("button_1"); var but_val2=document.getElementById("button_2"); var but_val3=document.getElementById("button_3"); function click() { alert("the value is " +val1.value); } but_val.onclick=click; function array() { var length=val1.value.length; alert("length is " +length); var newarr=new Array(); for(var i=0;i<length;i++) { newarr[i]=val1.value[i];//this is the MAIN PART textbox value comes here in array supose value is 1234 alert(newarr[i]); } …

Member Avatar for Taywin
0
198
Member Avatar for sharelife

Hi, Sorry for my bad English. I'm trying to get HTML source of this webpage [url]http://priceboard.kimeng.com.vn/webdeploy/HoseBoard.aspx[/url] When I used function 'View Page Source' I get [CODE] ... <div id="divPTableInner" style="width:100%"> <div id="divPTable"><center style="margin:40px"><img src="images/loader.gif" width="32" height="32" border="0" alt="Loading"/></center></div> </div> ... [/CODE] But when I used Firebug (Firefox) to view source …

Member Avatar for Taywin
0
124
Member Avatar for Coyx

Hi guys, I'm wondering if anyone can help. I have surryussface flu and I just can't seem to concentrate at all. I need to be able to select a colour from a list like the attached image. I've managed to code it right up to the part where it can …

Member Avatar for Coyx
0
1K
Member Avatar for niths

hello all, In my script i have a plus(+) and minus(-) signs. Instead of those i need to call image from my image folder. so can anyone help me please.. Thank You.[ICODE]<script language="JavaScript"> $(document).ready(function() { $(".topnav").accordion({ accordion:false, speed: 500, closedSign: '[+]', openedSign: '[-]' }); }); </script> [/ICODE]

0
74
Member Avatar for Stefan_Lam88

Hi web developer, I want to know how do you guys fix your width in IE8/IE7?Because I got 1 table and let say example 4 columns.I only got 1 column temporary, it will auto populate the whole table eventhough I have defined my width in td. My condition is illustrated …

Member Avatar for Stefan_Lam88
0
107
Member Avatar for Danny159

Hey Guys, I have the following script... I also have a drop down list of all Towns and Cities in the UK... When a user changes the location I need the google map marker to love to that city... but allow the user to move the marker and show the …

0
66
Member Avatar for MARKAND911

I have a panel named "listState" on my aspx page Now in that panel i have number of dropdowns. I want id of that all dropdownlist present in "listState" How can i do this using JQUERY I tried following code $('#<%=listState.ClientID%>').find("select") But it doesnt gives me id of all dropdownlist. …

Member Avatar for touch_the_sky
0
143
Member Avatar for grabit

Hi Peoples I have been cobbling together a simple JS/CF gallery page that shows the thumbs down the page (a block of5 lines of 3)AND when you click on a thumb it changes the placeholder image with the larger image of the thum clicked on. My problem is that the …

Member Avatar for Taywin
0
152
Member Avatar for ankit.pandey3

[CODE]blinkOnNewMessage: function(dateObject, userID, userName, userRole, messageID, messageText, channelID, ip) { if(this.settings['blink'] && this.lastID && !this.channelSwitch && userID != this.userID) { clearInterval(this.blinkInterval); this.blinkInterval = setInterval( 'ajaxChat.blinkUpdate(''+this.addSlashes(this.decodeSpecialChars(userName))+'')', this.settings['blinkInterval'] ); } }, blinkUpdate: function(blinkStr) { if(!this.originalDocumentTitle) { this.originalDocumentTitle = document.title; } if(!arguments.callee.blink) { document.title = '[@ ] '+blinkStr+' - '+this.originalDocumentTitle; arguments.callee.blink = 1; …

Member Avatar for Taywin
0
103
Member Avatar for Stefan_Lam88

Hey guys, any 1 here familiar with footer push down whenever content is extended automatically?I m stucked for 2 days and google search, any recommend. a great advise needed. when I extend my content.it overlaps my footer..

Member Avatar for Taywin
0
71
Member Avatar for Aksel

Hi all :) I'm having some issues with getting the value of a textarea which I fetch with jquery's ajax function. I'm displaying some comments in my ajaxcontent. All the comments have a onClick quoting link which is supposed to send the id of the textarea which is to be …

Member Avatar for Aksel
0
141
Member Avatar for tejasagawane

While accessing my web service i am getting XMLHttpRequest status=0 in Crome/Mozilla and in IE getting XMLHttpRequest status=406. What is the solution for it so that i will successfully get responseText from server? I have tried accessing my html code with localhost but its getting same error,while when i run …

Member Avatar for Taywin
0
61
Member Avatar for Virangya

Hi, Is there a way to trigger F11 trough javascript or jquery so.. i can go into full-screen mode? If so how can i do it.? Thanx...

Member Avatar for Taywin
0
122
Member Avatar for Mangesh G

i have created a popup at the following page: [url]http://suawg.osugv.servertrust.com[/url] If i click on 18+ then it gets redirected to [url]http://suawg.osugv.servertrust.com/default.asp[/url] if i click on i am not 18 then it gets redirected to google.com if i have chosen 18+ then the cookie should be created and if by mistake …

Member Avatar for Taywin
0
87
Member Avatar for mehrantahir

Hi everyone, i user jquery library to create popup on links of website,it work fine in the firefox but give problem in the IE9, the problem is it cover half screen with normal zoom,with increase/decrease the popup covered area increase or decrease, i dont understand where is the problem please …

Member Avatar for pritaeas
0
52
Member Avatar for DarkBerzerk

im using SimpleCart script and when the custmer press the Checkout Button [CODE]<a href="javascript:;" class="simpleCart_checkout">Checkout</a>[/CODE] this code run [CODE] me.checkout = function() { if( me.quantity === 0 ){ error("Cart is empty"); return; } switch( me.checkoutTo ){ case PayPal: me.paypalCheckout(); break; case GoogleCheckout: me.googleCheckout(); break; case Email: me.emailCheckout(); break; default: me.customCheckout(); …

Member Avatar for DarkBerzerk
0
125
Member Avatar for Marshmallows

In my head, this seems so easy, but i cant seem to overcome it. I have an html page which includes a checkbox. I then have a jQuery code to display a hidden field when this box is checked. The hidden field is populated with a value that is calculated …

0
113
Member Avatar for bubbafunk1

I have a jquery sliding image gallery and a lightbox gallery on the same html page. The only way i can get the sliding gallery to show in a browser on the page is to have the lightbox script placed above the slider script. This will make them both show …

Member Avatar for Aisha_mdf
0
147
Member Avatar for newmaster

Hi there! I am newbie in JS. I am making making class project and faced with some problems. I have found script (here) and learned. here is my problem: 1. not updating row number and row ID after deleting rows 2. not updating total sum if user change quantity 3. …

Member Avatar for newmaster
0
2K
Member Avatar for jogesh_p

hello friends, i want to get the class name from li tag for example [CODE] <ul> <li class="itme11"></li> <li class="itme21"></li> <li class="itme31"></li> <li class="itme41"></li> </ul> [/CODE] and i want to access the class item31 how do i get the class name item31 with javascript?? plz help me to solve out

Member Avatar for jogesh_p
0
128

The End.