Multiple Prompts>formulas>answer | Performing Trig Based On Prompts?
Mar 26, 2009
I am trying to set up a simple web page that requests two inputs and upon these input, determines and angle (basically taking a Spur Gear Pitch � and threads pitch to get a cam angle). Here is what I have but it is not working. I actually want it to work onClick of a button but I can deal with that later. I just am not sure how to get this to work properly.
<html>
<head>
<script language="JavaScript"><!--
function getCirc(dia){
return dia*Math.PI;
}
function getRad(x,y){
[Code]....
View 4 Replies
ADVERTISEMENT
Jul 20, 2005
Is there a way to modify the font in the alert & prompts windows?
View 1 Replies
View Related
Oct 26, 2011
Create a function that prompts user for a number. Develop the program so that it continues to prompt until it receives valid information. Then create a multiplication table that displays the number multiplied by 1 through prompted number.
View 6 Replies
View Related
Mar 29, 2010
I am going to concatenate these 2 input values together and display the result in an alert box. These two input are from two prompts.
[Code]...
View 1 Replies
View Related
Jan 28, 2009
I have 3 different images on my page, with same IDs for each. And names for each images as img1, img2, img3 respectively. I am using the following function in jQuery, but for some reason, the alert prompts me with the first image name no matter which image I click.
Code:
$(document).ready(function(){
$("#img_skin").click(function(){
alert($("#img_skin").attr("name"));
});
View 3 Replies
View Related
Apr 7, 2009
I am having a problem with my wysiwyg editor for my site, users dont like the fact that you have to select text before you create a link and I was wondering if it was possible to prompt the user to add title text before you use the execCommand('createlink') and use that has the select text that they made from the prompt. Instead of the old way where you must select text first to use execCommand('createlink') to create a link. kind of like Sitepoint's insert link function but instead prompts the user for the title and doesn't insert bbcode but a anchor tag?
View 7 Replies
View Related
Oct 26, 2011
- Create a function that prompts user for a number.
- Develop the program so that it continues to prompt until it receives valid information.
- Then create a multiplication table that displays the number multiplied by 1 through prompted number.
How to get the function to work.
View 5 Replies
View Related
Nov 15, 2011
Have made a contact form for a website that uses javascript to validate it then once validated prompts the user if the details are correct. Currently its working in chrome and ie but not in firefox. Code is in post #3.
View 5 Replies
View Related
Jun 27, 2002
Is there a way of trigging a javascript at the end of the <body> tag? Like this:
<html>
<body>
Do some html here
<script type="text/javascript">
How do I trig this script automaticly?
</script>
</body>
</html>
View 4 Replies
View Related
Aug 2, 2006
I am having trouble with my formulas for my salmon calculator. When I select seafoodgrill from the pull down menu and then enter 10.99 per lb, 85 % yield, and 25.50 price I get a 23% food cost. That is not correct. The correct answer should be around 24.6%. How have I set up the formula wrong. Code:
View 2 Replies
View Related
Apr 28, 2009
Using this formula for parts per million, can somebody please show a SIMPLE example of how to calculate all formulas for ppm?i tried everything..like in kilograms, etc...anyway, the link:[URL]
View 9 Replies
View Related
Sep 26, 2010
calculating the summed values of a column. Also, the row values are subtracted from each other eg:
col1 col2 col3
row1 a b = a-b
row2 c d = c-d
row3 =a+c =b+d =a-b+(c-d)
however there can be N number of rows. I have listed below and example I have done to calculate the subtracted values but I am having difficulty doing the summations.
<table width="362" border="1">
<tr>
<td width="91"> <input name='r1c1' onblur='function update_Total_r1c()' size='6' value=""> r1c1</td>
[Code]....
View 2 Replies
View Related
Mar 29, 2010
I am trying to call a javascript method on a page that is loaded into a div with ajax.I cannot get javascript functioncalls to work.And I don`t know why,that is when I run the page in its own browser window it works.Can I do it different to ensure it loads javascript?
Code:
<?php
session_start();
require_once("CartClass.php");[code].......
View 12 Replies
View Related
May 1, 2010
Obviously I'm not quite understanding .not() because the following code does not perform identically:
if(!$(this).is('.current')) { some code }
and
if($(this).not('.current')) { some code }
So that I can make use of .not(), how would I write the second conditional so that it performs as the first conditional?
View 2 Replies
View Related
May 24, 2010
http://livescore-bg.net/srpski.htmlI want when I change some of the menus 3 thing to happen in the folowing order:1) Old flag to hide()2) New flag to be on its place, IN THE MOMENT THAT this is not visible, I mean, in the moment in which the hide() action will already be performed.3) New flag to fadeIn()As you can see after some tests on the url shown, FIRST it replaces the flag, and after that it hides the old and shows the new one. Here is my first version of the code:
Code:
$(".zastavaholder").each(function(){
$(this).hide(1000);
[code]....
View 5 Replies
View Related
Mar 2, 2010
I am currently having a problem with a couple anchor tags that I have on a jQuery modal popup (using jQuery-ui-1.7.2.custom.js for the modal popup).Both of them will work correctly when I use jQuery v1.3.2 in any browser but they will not work anymore when I upgrade to v1.4.1 or v1.4.2 in IE 8. Chrome and FireFox will continue to work like they did in the previous versions.
When a user clicks on one of the anchor tags the action should perform without posting back. I have set up the onClick like thisonClick="javascript: return false;" which should prevent them of posting back but it looks like itsignoringwhat is returned and posting back. The logic I am using here is also used on another page but without the modal popup. Everything works fine on that page with every browser for jQuery v1.3.2, v1.4.1, and v1.4.2.
One thing l would like to point out is one of the tags is a select all button which uses .live() so I can select all the checkboxes on the modal popup. The reason I point this out is because other posts like live-method-for-change-event-broken-in-jquery-1-4-2-for-ie-worked-in-1-4-1 also had problems with IE 8 and .live(). My problem and theirs might be related.
View 2 Replies
View Related
Nov 16, 2011
This code
$('button').click(function(){
$('body').append('<div>I am working</div>');
$.ajax({
async:false,
});
});
Doesn't display the "I am working message" until the ajax call is complete.
[Code]...
View 1 Replies
View Related
Jan 13, 2006
I work for a small college and we were recently given permission to use a particular GPA calculator on their website. They sent us a javascript file, that I now have. I am trying to incorporate this into our website, but I don't really know much about javascript and I am having trouble making it work.
You can view the GPA calculator here to help clarify what I mean... If someone could just help point me in the right direction or if anyone know a site with tips that would be helpful to me..
View 3 Replies
View Related
Jan 18, 2011
I was wondering if anyone knew of a way of selecting a DIV based on 2 of itsattributes meeting a certain criteria. Say for example I have a variable called 'time', now if data-in and data-out (below) are 'seconds', how would you show the relevant DIV based on the 'time' variable.Assume all the below are hidden by CSS to start with.
For example if 'time'=15 it would show slide1 because it's between data-in (10) and data-out (20).[code]...
View 1 Replies
View Related
Mar 5, 2010
I have the following HTML:
<div id="box">
<div id="inner-new">
content
</div>
[Code]....
This code block occurs several times. Sometime the first div ist just "inner" and the second div is missing.
Now I need to update the "new" DIV based on the height of the previous inner-new DIV. For one it works fine:
var height = $('#inner-new').outerHeight();
$('#new').css('margin-top', height*(-1)-30);
But how could I re-use this universally for all my boxes. It needs to check if the DIV "box" contains the DIV "inner-new" as first element, if that is true it need to update the DIV "new".
I tried several things with $('#box').each(function(i) { ... }); but couldn't come up with a solution.
View 1 Replies
View Related
Apr 16, 2010
I have mulitiple 'a' tags with different classes (aclass1, aclass2, aclass(n)) and I have multiple divs, also with consecutive classes (divclass1, divclass2, divclass(n)). Is there a way to select the 'a' tags to match the div based on its number (ie. 'aclass1' with 'divclass1' and aclass2 with divclass2)? For example something like this:
$(document).ready(function() { $(".aclass(n)").event(".divclass(n)");
});
View 3 Replies
View Related
Jul 24, 2011
Show/hide table rows via select menu choices - And I changed my Javascript up a little so that I would have an easier time remembering it.Here are the codes:
HTML
<table cellspacing="5" cellpadding="5" border="0">
<tr>
<td><strong>Request Service:</strong></td>
<td><input type="radio" value="Website Design" />
[code]....
View 4 Replies
View Related
Jun 14, 2011
I am going to achieve something like this.
<div id="sidebar">
<div id="html1"><h2>Test 1</h2></div>
<div id="html2"><h2>a1 tes2</h2></div>
<div id="html3"><h2>a2 tes3</h2></div>
</div>
The thing is that first I need to detect if the div id is "sidebar" if its "sidebar" then it will pickup all the text inside h2 tag and will search for a1 or a2 in the text.If a1 is found then it will pickup the id html2 and make this div only visible.So in this case it will pickup id html2 and make it visible while other ids like html1 and html3 will be hidden.
View 2 Replies
View Related
Feb 9, 2009
I need to create multiple JavaScript clocks on my site based on the client location (I.e. Los Angeles, Houston, Orlando, etc). Nothing complicated... just text clocks to show the current time. With due credit to this site , I used their code as a starting point.
[Code]...
View 2 Replies
View Related
Nov 1, 2011
I need to alert the answer 31 but keep getting 34. It has to go like this ticket*reward+cost. It would be 24+4+3=31. I would need to times the tickets by rewards then add the cost after. How would I alert this? code...
View 3 Replies
View Related
Jul 29, 2011
someone here might know what I'm doing wrong. I have a list of checkboxes, in multiple rows with each along the lines of:
[Code]...
View 3 Replies
View Related