15,113 Topics

Member Avatar for
Member Avatar for 2brite

HELP Please - I have hit a wall in trying to get the following perl created web page to work correctly. It is designed to find all the pictures (.jpg) in all folders below the designated one and to then display them in individual slideshows. I have a version of …

Member Avatar for mitchems
0
120
Member Avatar for Archenemie

I have been tasked to learn basic JavaScript as part of my collage coarse, and i've taken this section if code from the W3C website and commented it out. Is my interpretation of what this script is doing correct? Im using this script as an example of how JavaScript can …

Member Avatar for Archenemie
0
115
Member Avatar for sanchow

Hi, I am trying to use AJAX to do a simple thing of displaying the results in the same page. Clicking on the <a href tag should display the results in the same page. This is working correctly in IE but the onclick() function is not working in firefox and …

Member Avatar for Airshow
0
1K
Member Avatar for ganeshhsk

Write a program to find and print how many times the number 8 occurs in an array A. The array A should take as input as many values as the user wishes to enter. I tried this program......but still i didnt fix the problem. i wants to know the program …

Member Avatar for pritaeas
0
42
Member Avatar for murphs

<html> <head> <title></title> </head> <body> <table border="8" cellpadding="80" bordercolor="black" cellspacing="0" frame="border"> <tr> <td width="50%"></td><td width="50%">Welcome</td> </tr> <tr> <td width="50%"></td><td width="50%">Client</td> </tr> </table> </body> </html> i need urgent help on div floats, this are my codes the only thing missing is a div float in the middle.please help me, i have …

Member Avatar for benqus
0
99
Member Avatar for Meriam

[CODE]<HTML> <HEAD> <TITLE>TMA 02 Q4(ii)</TITLE> <SCRIPT LANGUAGE = "JAVASCRIPT"> var loc; var weather; var name; loc = window.prompt('Please enter your location',''); weather = window.prompt(`Please enter the weather`,``); name = window.prompt(`Please enter your name`,``); document.write(`London`;` Snowing`;` Meriam`); document.write(`<BR>` + `See you soon`) </SCRIPT> </HEAD> <BODY> </BODY> </HTML>[/CODE]

Member Avatar for benqus
0
90
Member Avatar for ikari

I've been having problems with web browsing that I think may be related to Javascript. I use forum sites like [url]www.ernya.com[/url] and there I get logged out every few minutes/seconds. I've found that clearing my cache regularly seems to help a little, but it doesn't fix the problem. Other forum/avatar …

Member Avatar for benqus
0
185
Member Avatar for feoperro

Hi, I would like to set the dimensions of an iFrame according to the content inside. Please bare in mind that the content inside will be based on ajax, so it will change without the page reloading. Thanks, Ashton.

0
77
Member Avatar for pgmarco

My JavaScript code works in all browsers except ie, I am not sure why. Any help is appreciated, Thank you. Website is [URL="http://illcomputers.comyr.com/custom.php"]http://illcomputers.comyr.com/custom.php[/URL] Javascript File[URL="http://illcomputers.comyr.com/scripts/lowendcost.js"]http://illcomputers.comyr.com/scripts/lowendcost.js[/URL] JavaScript Code [CODE] function updatecost1() { const keymouse = 40; const Case = 55; var data = document.getElementById("data"); var seldata = data.selectedIndex; var cpu = …

Member Avatar for Airshow
0
1K
Member Avatar for Tcll

here's a little test I want to do: in the main html I simply want a text input, and a submit button... when I type something in the input and click 'submit', it calls a function that generates an html with: [CODE] <html> <head><title>JS Generated HTML</title></head> <body> //(text in input) …

Member Avatar for Tcll
0
145
Member Avatar for lf.gene

Hi. I have question regarding jquery. I would like to know is it possible to put two href into one therefore i can use two different css for one jquery? [CODE] <link type="text/css" href="css/ui-lightness/jquery-ui-1.8.6.custom.css" rel="stylesheet" /> <script type="text/javascript" src="js/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="js/jquery-ui-1.8.6.custom.min.js"></script> <link rel='stylesheet' type='text/css' href='../fullcalendar/fullcalendar.css' /> <script type='text/javascript' src='../jquery/jquery-1.4.4.min.js'></script> …

Member Avatar for Airshow
0
100
Member Avatar for EZ Fanpage

Hai Fellow Developers, I have one problem and appreciate if any of you could guide me on this. I created a custom Paypal button with some Javascript and AJAX. Why with AJAX? Because the script have a coupon acceptance code where i need some validation using AJAX. The problem is …

0
108
Member Avatar for mbarandao

If the following function performs calculation [CODE] <script type="text/javascript"> function updatesum() { document.PaymentForm.newbalance.value = (document.PaymentForm.balance.value -0) - (document.PaymentForm.paymentamount.value -0); } </script> [/CODE] How do I incorporate above function and the one below into one to thus do the calculation and round the number? [CODE] <script type = "text/javascript"> function roundNumber(num, …

Member Avatar for mbarandao
0
91
Member Avatar for yopirates

hey! guys i am not able to use the attribute word-wrap:break-word; many ppl say its compatible only in css3 . :( i want to know an equivalent tag for that in css2 ..

0
92
Member Avatar for Ritesh_4

Hi Am currently attaching 2 files, but am concerned with the javascript file, whereby I want to make the transition of the slideshow follow almost same as the flash one, anyone can help me? Could not upload js files here so here's a link from which can download: [url]http://www.keepandshare.com/doc/2425411/example-zip-december-7-2010-10-31-am-3-5-meg?da=y[/url] Also …

0
73
Member Avatar for Ritesh_4

Hello Just like we have some addons which enable us to download flash movies from webpages in firefox, is there a similar tool which can download javascript animations from webpages?

Member Avatar for Ritesh_4
0
92
Member Avatar for luke noob

this is my code... [code=javascript] $(function() { $(".Like").livequery("click", function(e) { var ldl_session_id = $("#session_id").val(); var name = $("#commentName").val(); var ldl_id = $(this).attr("id").replace("post_id",""); var parent = $("#display_like_names-"+ldl_id); // var parent = $(this); $(this).fadeOut(200); $.ajax({ type: "POST", url: "ajax_like_names.php", data: "ldl_post_session_id="+ldl_session_id+"&ldl_post_id="+ldl_id, cache: true, success: function(html) { parent.html(html); parent.fadeIn(200); } }); return false; …

Member Avatar for luke noob
0
785
Member Avatar for Helpjava11

Please Help I am trying to make a counter that when i click a button it adds .01 to a running total. Below is the code I have created but when i click on the button it adds one and deletes the bid button [CODE]<html> <form> <input name = "count2" …

Member Avatar for Airshow
0
140
Member Avatar for lf.gene

Hi all, Im currently working on a project that requires me to use jquery that i have never learnt before. I have downloaded the library online. How can i change the datepicker calendar to able to select multiple date at one time?

Member Avatar for lf.gene
0
57
Member Avatar for SBA-CDeCinko

I have a ScriptManager tag in my master template. This causes no issue for visitors who have Javascript disabled. As soon as I add EnableHistory="true" to support the saving of history points, Javascript disabled visitors get an error. How can I support both types of users?

0
59
Member Avatar for JustmeVSI

Hi guys. I'm still a newbie with ajax and I have a problem that I guess has a standard solution that I don't know. Here is the situation. I have my ajax navigation from page to page and I use jQuery and a POST method to send the information to …

Member Avatar for hielo
0
90
Member Avatar for druveen

Hi, I have to store all words in an array suffixed with @ in an string. For eg : var str = "Hello i @need help with @regexp"; \s@([A-Za-z0-9_]+\b) this regular expression gives me only @need not @regexp so please help. check this link... [URL="http://www.regular-expressions.info/javascriptexample.html"]http://www.regular-expressions.info/javascriptexample.html[/URL] might be helpfull thanks in …

Member Avatar for druveen
0
69
Member Avatar for Brosa

I am making the products page for one of my sites, and firefox keeps giving me the error it can't find the ID I am requesting. Every other browser works fine except for firefox. [CODE] <form mehtod="post"> <input type="text" onclick="SelectAll(this.id)' onkeypress="return isNumber(event)" maxlength=2 style="width:3em; text-align:center;" id="quantity_ <?php echo $fetch['id']; ?>" …

Member Avatar for @developer
0
92
Member Avatar for JayGeePee

When a member signs up there asked to enter an email and verify. When they click the verification link in there email there taken to step 2 which is where they enter there info. In the info page I have an privacy policy link, which displays this way. [CODE]<h3><span class="underLine"> …

Member Avatar for @developer
0
135
Member Avatar for kiranbvsn

hi all, i've one problem with the jquery i am hiding a <div> using style=display:none; and when i clicked a button whose id is lnkbtnUnitAdd, i want to show the above div but i've written some code on OnClick event of the button, since the below function is returning false, …

Member Avatar for kiranbvsn
0
315
Member Avatar for Mattan360

Hi! I'm trying to login to my website throught my program, to do that I need a password and username. The password is encrypted using C# SHA256 but on the server it uses an javascript code I got from the web. My problem is that my C# Hash differs in …

Member Avatar for kvprajapati
0
2K
Member Avatar for public-image

Hi Guys! :) Erm im using JS to make divs on my site draggable, but I dont want my divs to go beyond a certain boundry as such, I was wondering if any of you could maybe help improve the script I am using (included below) so that users must …

Member Avatar for Airshow
0
152
Member Avatar for omaiaa0p

Hi everyone, So this is a game which I would like learning to modify it It's basically a rocket that should get to the base, I want to change it to a person that just walks right and left and when collided to the base, an alert shows up. The …

0
67
Member Avatar for WebKoller

Hello. I am using MYSQL to store articles. I wanted to present the articles in order by id, then let the user choose one of them and send the id of the article to another php page for processing, using ajax. To do so i have placed a simple form …

Member Avatar for Airshow
0
1K
Member Avatar for bwallace

We have this script that makes the photo change when you mouseover different items on the list. How can we make the photo link change as well? For example, how can we make the photo link to Yahoo when we hover over item 1 but to Google when we hover …

Member Avatar for Kraai
0
90

The End.