15,120 Topics

Member Avatar for
Member Avatar for erum

hi to all I have a scanerio thai need to be resolved .. I have grid and it shows certain record on searching ..and have few columsn like transactionID .Stauts etc etc ..also it have ModalPopupExtender under the panel (asp panel ) when i click on status column ..it should …

Member Avatar for LastMitch
0
296
Member Avatar for participantjava

Hi, I have one jsp page , in that jsp page i have four <div>'s .I want to load the <div> with some dynamic data retrieving from database. When i open the page one <div> should show the data once that data is completed another <div> should show the data. …

Member Avatar for JorgeM
0
116
Member Avatar for GraficRegret

I am writing a live chat function for a client, I have everything working up to the point of entering the conversation into a table on the server, however when it comes to ajax and jquery, I am still trying to get the basics down so here is my chat …

Member Avatar for LastMitch
0
160
Member Avatar for rem2

Hi there As usual when making bigger projects I have a problem with simple thing. Basically for now I want to create simple video connection between 2 remote host via peerconnection, I have some codes that were on the web but looks like either I made some mistake either current …

Member Avatar for LastMitch
0
346
Member Avatar for chr.s

Hi, I'm after some thoughts and opinions regarding the navigation/behaviour of a portion of a site I'm working on. The site is a shop, which is built with the Big Cartel framework, and is my first attempt at using more than just a couple of lines of javascript - or …

Member Avatar for chr.s
1
348
Member Avatar for techyworld

Hi i want to generate a grid of random numbers and operators both vertical and horizontal using 2D array in javascript. how can i do it?

Member Avatar for DavidB
0
144
Member Avatar for ukhostland

I have found myself well out of my depth, using a template to create a web site with both JS and PHP scripts. Perhaps someone here can help me? The single page website is accually finished and works well when viewed in a browser from local files. These have been …

Member Avatar for ukhostland
0
229
Member Avatar for abhi10kumar

I have **dropdown down boxes with checkboxes**; I'm using jguery to display Dropdown with checkboxes; I'm populating **Select Locality** with **Select City** dropdown. Now, when I select a city from dropdown It should display its locality in dropdown with checkboxes but showing localities in dropdown only. Please refer attached image …

Member Avatar for abhi10kumar
0
304
Member Avatar for rouse

I have two forms on a page. Each calls some javascript code. One goes to paypal and one that goes to a send mail routine. How can I distinguish between the two so they don’t obstruct with each other? Contact form descriptor: <form action='sendMail.php' method='post' id="contact-form" class="form-horizontal" > <fieldset> … …

Member Avatar for rouse
0
107
Member Avatar for FBM357

I've inherited the task of creating a web page for my dept. application on the intranet. My experience with javascript is limited and would rather do this via PHP (v 4.3 at work), but javascript is what I've to work with. Once a week we run migration (Oracle) at a …

Member Avatar for FBM357
0
2K
Member Avatar for dalilice

Hello guys, Don't know if this is the related thread to post this sort of question so i ask a mod to move it if necesary. I have some custom Like buttons on my website for twitter, facebook and Gplus (but think that is the same thing) and i want …

Member Avatar for JorgeM
0
132
Member Avatar for Surfsup

I have this simple slideshow script and just need to make the divs fade in/out when the user clicks 'prev' and 'next' arrow. Currently there is no effect atall which looks a bit harsh. I'm sure this can't be too difficult - however, I'm new to this stuff - Thanks. …

Member Avatar for stbuchok
0
265
Member Avatar for Boniface Mutind

I have this json data and would like to convert to xml with php.. [themes] => Array ( [theme] => Array ( [0] => Array ( [name] => dasdasd [filename] => dasdasd [isDefault] => 0 ) [1] => Array ( [name] => dasdasd [filename] => dasdasd [isDefault] => 1 ) …

0
99
Member Avatar for Jessfly

I run a script where users can select locations from dynamic select menu. When a user selects his location, a google map should load on the page. I have 2 problems on this issue. Pls help me fix them: 1) Map is loading, but it can't mark the place. I …

Member Avatar for Jessfly
0
4K
Member Avatar for ckjaseem

Hi all , I have a set-interval function inside a for loop and when inside the set-interval function if it meets a criteria give an alert and clear the interval. Below is my code but its not working can anyone tell what the mistake here. var timeCheck = 0; function …

Member Avatar for LastMitch
0
486
Member Avatar for Potato.Head

Hi, I'm have experience in Javascript but not in the UI design/CSS, so maybe what I need to do is very simple, but because of my knowledge is complicated for me. I need to create a 'component', that has 2 or 3 buttons together and they behave like radio buttons, …

Member Avatar for LastMitch
0
210
Member Avatar for GraficRegret

Is there any way to have more then one interval timer running on the same page without them interfearing with each other?

Member Avatar for GraficRegret
0
104
Member Avatar for Kamboodle

Hi there, I'm currently using GLOW on my website for draggable boxes. However they do not drag in IE. Would anyone have a fix? <script src="style/js/glow/1.7.0/core/core.js" type="text/javascript"></script> <script src="style/js/glow/1.7.0/widgets/widgets.js" type="text/javascript"></script> <link href="style/js/glow/1.7.0/widgets/widgets.css" type="text/css" rel="stylesheet" /> <script type="text/javascript"> glow.ready(function () { new glow.widgets.Sortable( '#content .grid_5, #content .grid_6', { draggableOptions: { handle: …

Member Avatar for Troy III
0
106
Member Avatar for code_rum

Hi, I am working on a tooltip which shows the content in tooltip if present. But the code I am using shows the empty tooltip even the content returned is empty. I don't want to show tooltip or qtip when the content is empty.. :( Here's my code HTML echo …

Member Avatar for Troy III
0
386
Member Avatar for milkman93

Hey guys, I would like that when the HTML page loads to my website, if the user enters a word and presses a specific key (e.g. enter). The event should occur on the page and manipulate an object already existing on the page. Here is an example: 1.) The webpage …

Member Avatar for Troy III
-1
177
Member Avatar for wuzere.crewzz

this is my code function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; var row = table.insertRow(rowCount); var colCount = table.rows[0].cells.length; for(var i=0; i<colCount; i++) { var newcell = row.insertCell(i); newcell.innerHTML = table.rows[0].cells[i].innerHTML; //alert(newcell.childNodes); switch(newcell.childNodes[0].type) { case "text": newcell.childNodes[0].value = ""; break; case "checkbox": newcell.childNodes[0].checked = false; break; …

Member Avatar for wuzere.crewzz
0
186
Member Avatar for amweasel

If I make a website using Django, is there any need to use Javascript? Can Django work in place of Javascript itself?

Member Avatar for amweasel
0
285
Member Avatar for GraficRegret

I am working on a live chat function, I have everything working except the message retrieval and displaying function, I am storeing all the messages on my server in a table, I am trying to make a function now to retrieve the most recent message entered and display it in …

Member Avatar for GraficRegret
0
204
Member Avatar for prem2

I have implemented 3D CoverFlow effect slider in jQuery, but its not working in IE7,IE8 so any one can give me solution for this issue. url of coveflow effect slider http://codecanyon.net/item/icarousel/full_screen_preview/2527180 This jQuery function is not working in IE7,IE8 and IE9 and also its a paid versions.

Member Avatar for pritaeas
0
222
Member Avatar for code_rum

Hi, I am struggling with this..I have multiple images and data with same class. As I click on a link with class single_image it should pop up the corresponding div. but its not working every time i click it shows me the same image. I have tried using $("a.single_image").each( function …

Member Avatar for code_rum
0
157
Member Avatar for Don Ocso

Hello, please i want to learn javascript. I need some links to project-like tutorials that can help me understand javascript better, i have read all the javascript tutorials on w3school now i need some better examples. Thank you in advance.

Member Avatar for Don Ocso
0
108
Member Avatar for DarkMonarch

Hey guys it's been a long time i've wrote here. I decided to take a course in JS OOP, my problem is the program doesn't do the difference between objects. Exemple the program work only if i pop 1 object, if i pop a second one, it screws my functions. …

Member Avatar for DarkMonarch
0
226
Member Avatar for littledevils326

Not sure if I am in the right section for this. I am currently designing a web page using javascript, html and css. The page is a seat booking seat which allows the user to select and unselect seats. I have managed to get the page to display id of …

Member Avatar for lps
0
210
Member Avatar for chr.s

Hi, I'm using the big cartel framework to build a site, and am trying to make an AJAX call - currently without success. My code is as follows: jQ('body').on('click','#closeDetails',function(){ // If necessary condition met if (jQ('#productDetails').attr('class') != undefined){ // Store appropriate category var destCategory = jQ('#productDetails').attr('class').toLowerCase(); // Attempt to alert …

Member Avatar for chr.s
0
302
Member Avatar for Alba Ra

Hello, I want to include SVG into a webpage and to increase its support on older browsers I decided to use [Ample SDK](http://www.amplesdk.com/) to render the images. Unfortunately, Ample SDK does not provide a straightforward guide for people who have not extensive knowledge in some of its features. Its tutorial …

Member Avatar for LastMitch
0
344

The End.