15,127 Topics
| |
I am new to javascript and downloaded an script to my website. It has columns like Bid, Ask, High values. I like to add an extra column (Spread = Ask – Bid). Is their way to add this extra column? Any guidance or reference to material is highly appreciated. Applet: … | |
| Hi all. Am messing about with an ajax form at present which loops through records in a DB. This is my issue: I have a reset image link in my form (called "file_edit") which calls a 'confirm reset': [CODE]function reset() { if (confirm("Reset? You'll lose any changes!")) { document.file_edit.reset(); } … |
am using an example of tooltips from [url]http://www.dynamicdrive.com/dynamicindex5/stickytooltip.htm[/url] on [url]www.euroworker.no/order[/url] I have this code here to work with, but it just doesn't seem to work correctly, I've tried everything I can think of. It's not a problem with the Smarty or html, css as far as I Can see, when … | |
I built an ajax chat in one of my mvc website. everything is working fine. I am using polling. At certain interval i am using $.post to get the messages from the db. But there is a problem. The message retrieved using $.post keeps on repeating. here is my javascript … | |
I'm trying to add a java multi level drop down menu but im having trouble adding it. If someone can walk me through it, i would appreciate it. | |
Im trying to add something to my web site, where a person can upload a file and i receive it through the email. how can i do that? | |
I have been picking up little bits of JavaScript for a while now and I can do a lot of basic scripts like disjoin (sp) rollovers and redirects and stuff. Now I want to be able to create advanced scripts like games and advanced form handling things. I find that … | |
Within a function, I am creating a new variable that contains an HTML element. The variable declaration works fine in Firefox for example, however it comes up "undefined" in Google Chrome. [CODE]function updateName(num) { name = document.getElementById("id_name_"+num); } [/CODE] | |
Hey I was wondering how you allow the user to highlight text they've typed (in a form) and click a button to edit its style (placing tags around the highlighted text). Could someone explain this a little further and perhaps provide an example. Thanks in advance. | |
i am having a problem where i want to give user an option to select more entry from one dropdown...example : <form name="form1" method="post" action=""> <label> <select name="service" id="service"> <option value="service1">service 1</option> <option value="service2">service2</option> <option value="service3">service3</option> <option value="service4">service 4</option> <option value="service5">srvice5</option> <option value="service6">service 6</option> </select> </label> </form> in this case, … | |
Modal not showing up when show is called, also error on loading page. Attaching code below, can anyone help me discover my syntax / logic issues here? NOTE: Did some research on this before posting, some claimed it can be an issue of where the modal is placed on the … | |
Hey Guys, Please help me out. We were re-designing a web page. When we tried to edit the contact us page its popping out an unwanted message. Actually there is no change except the design from the previous version ([url]http://newgenresoft.com/contact.htm[/url]) both are working in the right way. But this popup … | |
Hey guys, new to javascript. I was just wondering could you point me in the right direction as to where i might be going wrong. Please see code below. [CODE]<%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> <script language="JavaScript">function … | |
I can produced a small function using JavaScript, which adds a new table row upon a button click, however, I am unsure how to get values into the dropdown menu. Is it possible to obtain the values from a sql database? Any help would be much appreciated. My existing code … | |
I am trying to dynamically create a table using Javascript. I will start by telling you what i have done. I am modifying a html page that has picture thumbnails on it. I drag the thumbnail pictures to a drop box. The pictures are added to an array. When a … | |
Hello there I am a fairly new in MySQL/PHP/Javascript programming. I'm writing a web based gymnast profile management system for my final year project. Here's my problem. I have 5 MySQL InnoDB tables: [B]tests[/B], [B]testunits[/B], [B]points[/B], [B]testsgymnast[/B] and [B]gymnast[/B] I am able to retrieve a selected test which has particular … | |
Is there a method one could use in either HTML, CSS or Javascript to resize an alert box? If this is not possible could one create one's own window that looks like an alert/confirm box but is resizeable? I also need this window to be always on top, no matter … | |
I'm having some trouble with some code, I found a script that makes a countdown then sends you to another page, I like the script a lot, I tried editing it to change its look, in this case its font, does this look right to you, I notice its colour … | |
To create the page page2.html which will have blue text shadow button. Moreover, by clicking on the button to change color and direction of the shadow. When your cursor is over the button text should be dug ("Inside"), and when the cursor is over the button's text should be "out" … | |
I am using this code to validate a form to check that only numbers have been entered but when I enter alphabets the javascript raises an error but still submits the form. So please can anyone tell me where I am going wrong. [CODE] <script type='text/javascript'> function isNumeric(elem, helperMsg){ var … | |
I write javascript for image slide show. [CODE] var mygallery=new fadeSlideShow({ wrapperid: "fadeshow1", //ID of blank DIV on page to house Slideshow dimensions: [380, 469], //width/height of gallery in pixels. Should reflect dimensions of largest image imagearray: [ <?php $q2 = mysql_query("select * from home_flash"); $i = 0; while($res = … | |
Hi I am developing an online admission website for my project....I hv a table in php page with 2 columns(student id, student name)...when some1 clicks on any row, then the detail information of that student should be retrieved from mysql table n result should be displayed in the form of … | |
Greetings! I'm trying to make [URL="http://faculty.kutztown.edu/rjensen/charcoun.htm"]this tool[/URL] for some fellow librarians who answer questions via text messaging. As you see beneath that page's text box, the catch is that the PC-to-SMS client treats the forward slash as [I]two[/I] characters. I'd like if possible for the JavaScript character counter to recognize … | |
I would like to use Galleria to display photos on my website but I'm having trouble getting it to function. I don't know an awful lot about html but I think I've followed the instructions correctly. I would like my gallery to function something like this: [url]http://monc.se/kitchen/stew/galleria/index2.htm[/url] but right now … | |
I have a drop down box which is working but I want to put it on the same page twice because the document.drop_list.? is hard coded it will not work if I try and use it twice on the same page I have tried sending the id to the javascript … | |
I like to have a sleep or delay function in javascript. The Prototype library 1.6.1 has a delay function. It is working well in Firefox or Chrome but not IE 7 on windows XP. Please help (I cannot use newer version of windows). [CODE]function sleep() { } sleep.delay(0.1);[/CODE] | |
Hi one and all, Have taken a look through the mass of other threads and whilst not covering what I need, certainly given me a dozen other ideas for other things, so definately not wasted hours but learning diversion, anyway sorry. I have been trying to utilize a pre existing … | |
Hi all, first time post here. I'm using jquery/ajax to create some links with window.open method. Here's the relevant code: [CODE]$("#content").empty(); $.ajax({ type: "GET", url: "webapps.xml", dataType: ($.browser.msie) ? "text" : "xml", success: function(xml){ var newXML = parseXml(xml); $("#content").append('<h2>'+ cat + '</h2>'); $("#content").append('<div id="appLinks"></div>'); $(newXML).find("APP").each(function(){ <!-- alert("before if"); --> if … | |
Hi, I have a page in which the code is as below: <%@ taglib prefix="s" uri="/struts-tags"%> <s:url id="delete" action="delete" > <s:param name="proj.id" value="id" /> </s:url> <s:a href="%{delete}" onclick="return confirm('Are you sure?');" theme="ajax" notifyTopics="selected_Project" formId="projectForm">Delete</s:a> Now the issue over here is, when i click on the delete button i get a … | |
Friends, Can u suggest me some good sites and tutorials to start Extended JS (Java Script) ? --Thanks ramjeev |
The End.