can some one please help me please fast fast Science Assignment Help

can some one please help me please fast fast Science Assignment Help. can some one please help me please fast fast Science Assignment Help.


(/0x4*br />

A) 0.4 moles of sodium nitrate 

     B) 1.2 moles of calcium acetate 
     C) 0.8 moles of ethylene glycol (a nonelectrolyte) 
     D) 1.0 moles of ethanol (a nonelectrolyte) 
     E) 1.6 moles of calcium phosphate 

2,, ion formulas for this  soluble

FeBr3


can some one please help me please fast fast Science Assignment Help[supanova_question]

League matchup Programming Assignment Help

I want to make a script that will generate all possible matches from 1 to 16.

More info: I have 16 players in a tournament. I am developing league system and I need a script that will generate all the possible matches by rounds.

All possible matches – I mean that Player1 vs player2, player 3 vs player 4, players 1 vs player 3, player 16 vs 15, player 15 vs 5 etc………..

My table:

Playe1 | Player2| Round

In round = 1 it should be all league matches for all players 1-16,

in round = 2 the same, just a match that already was in round = 1 can’t be in round = 2 

In round = 3 the same, just match that already was in round =1, round = 2 can’t be in round = 3

.. etc untill all possible combinations are done

I am trying to figure it out for a while and couldnt find a solution. Any help will be appreciated!

[supanova_question]

Funny smells and firewalls Other Assignment Help

My car started emitting a funny smell. It reminds me of the plastic-ey smell when using a hot glue gun. It started yesterday, specifically when I left work, because it didn’t smell when I drove to work, and the smell started within a minute of starting the car. I looked under the hood for melting hoses, loose wires, etc. but the only thing I noticed is that there is a hole in the firewall fabric. Not a melted hole, not cut, but a chunk torn out. It’s possible an animal got into my engine compartment, but anyways, could the smell be little pieces burning on the manifold?
The smell is not smokey, not acrid, and not metallic (like an electrical fire). I know it’s not brakes or belts, as there is no noise (and those smells are very distinct.) There’s no visible issues that I can find other than the firewall. Car runs normally, no overheating.

[supanova_question]

Popup box position issue with CSSPopup box position issue with CSS Programming Assignment Help

Hey guys, i’m new in html/css coding and now i want to make a small “portfolio” website tryout. I only want a web with 3 squares on the middle of the website, a h1 header with “leo Design” and nice popups when clicking the boxes.

I copied the boxes scripts from http://css-tricks.com/fold-out-popups/

I want each box to have the popup on the bottom of the box 
So far i have this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Leo Design</title>

<style>

body {
font-family:"Courier New", Courier, monospace;
background-color:#333;
color:white;

}
p{
font-weight:300;
font-weight: bolder;
font-size:20px;
}

#tablaprincipal {
position: absolute;
left: 50%;
top: 50%;
z-index: 100;

margin-top: -200px;
margin-left: -270px;

}

<!-- Comienza el estilo PopUp -->
label {
position: relative;
}

.box {
position:absolute;
left: 0 ;
top: 100%;
z-index: 500;

/* previene errores en safari 5.1 */
-webkit-backface-visibility: hidden;

background-color: #eeeeee;
background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#999999));
background-image: -webkit-linear-gradient(top, #eeeeee, #999999);
background-image: -moz-linear-gradient(top, #eeeeee, #999999);
background-image: -ms-linear-gradient(top, #eeeeee, #999999);
background-image: -o-linear-gradient(top, #eeeeee, #999999);

-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;

-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;

width: 260px;
padding: 20px;
margin: 24px 0;
opacity: 0;

-webkit-transform: scale(0) skew(50deg);
-moz-transform: scale(0) skew(50deg);
-ms-transform: scale(0) skew(50deg);
-o-transform: scale(0) skew(50deg);

-webkit-transform-origin: 0px -30px;
-moz-transform-origin: 0px -30px;
-ms-transform-origin: 0px -30px;
-o-transform-origin: 0px -30px;

-webkit-transition: -webkit-transform ease-out .35s, opacity ease-out .4s;
-moz-transition: -moz-transform ease-out .35s, opacity ease-out .4s;
-ms-transition: -ms-transform ease-out .35s, opacity ease-out .4s;
-o-transition: -o-transform ease-out .35s, opacity ease-out .4s;
}

.box:after {
content: "";
position: absolute;
bottom: 100%;
left: 30px;
border-bottom: 20px solid #eee;
border-left: 14px solid transparent;
border-right: 14px solid transparent;
width: 0;
height: 0;
}

.popUpControl:checked ~ label > .box {
opacity: 1;
-webkit-transform: scale(1) skew(0deg);
-moz-transform: scale(1) skew(0deg);
-ms-transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
}
.popUpControl {
display: none;
}

.button {
/*--
background: blue;
color: white;
padding: 5px;
border-radius: 5px;
--*/
}

/* For dog example */
.box img {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#doggiezzz:checked ~ label > span:first-child {
display: none;
}
#doggiezzz:checked ~ label:before {
content: "Less Dog!";
}


/* For link example */
.link { color: white; }
.title { display: block; font-weight: bold; margin: 0 0 10px 0; color: black; font: bold 16px Sans-Serif; text-decoration: none; }
.copy { color: black; text-decoration: none; }


<!-- termina el popup -->

</style>

</head>

<body>

<h1 align="center">
Leo Design
</h1>
<table id="tablaprincipal" align="center" border="0px" bordercolor="" height="150px" width="540" cellspacing="6px" cellpadding="6" >
<tr>

<td bgcolor="#FF6666" width="135">
<div id="page-wrap">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">About</p></span>




<!--<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span>
<span class="box">
<img src="http://placedog.com/260/260">



</span>
</label>
-->


</td>
<td bgcolor="#33CC66" width="135"><p align="center">
Portfolio</p>
</td>

<td bgcolor="#3366FF" width="135">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">Contact</p></span>




</td>
</tr>
</table>
<div id="page-wrap">
<!--
<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span></span>
<span class="box">
<img src="http://placedog.com/260/260">
</span>
</label>
-->

<p>

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
</label>

</p>

</div>
</body>
</html>

[supanova_question]

Rank the foll solutions in order of increasing osmotic pressure 1 low 4 high Science Assignment Help

 0.1 mol of propionic acid in 1 kg of water. 
 0.1 mol of fructose in 0.5 kg of water. 
 0.1 mol of HNO3 in 1 kg of water. 

 0.1 mol of Li2SO4 in 1 kg of water. 

[supanova_question]

[supanova_question]

The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help

The WWI song, “I Didn’t Raise My Boy to Be a
Coward” is a direct reflection of the time in which the song was published. In
your own words, explain why



The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help[supanova_question]

GMC Sierra Air condtioning not working. Other Assignment Help

I have a 20002 GMC Sierra 2500 HD 6.6 L Diesel. When I try and turn the Air conditioning on the light blinks 3 times and turns off right away It occasionally will turn on if the the truck has been running for more than 1 hour. There have been days when its 90 degrees and it will not turn on. We have tried changing the controls inside, and that did not work. The controls inside, are computer climate control, with 3 dials, 1 for fan speed, 1 for temperature set and the other for the vent setting. What do you think it could be?

[supanova_question]

Pearl Harbor Documentary Other Assignment Help

Please help someone:) My dad seen a documentary on either the History Channel or Military Channel about a New Zealand CB/Radio operator that was trying to send a message to the US to let them know that the Japanese were about to attack Pearl Harbor and the US was ignoring the CBer’s warning to them and the rest is history. Of course we all know what happened that fateful day. My dad seen this on TV about 3 or 4 yrs ago. Again if anyone has seen or knows the name of this documentary could you please let me know so I can try to get a copy of it for my dad. He wanted to see it so bad again and he cannot remember the name of it. Thanks for your help.

[supanova_question]

HTML5 Websql Programming Assignment Help

Hi, please bear with me as I struggle to ask this question.   Ok, here is most of the code I am working with:

<script>

      var html5rocks = {};

      html5rocks.webdb = {};

      html5rocks.webdb.db = null;

     

      html5rocks.webdb.open = function() {

        var dbSize = 5 * 1024 * 1024; // 5MB

        html5rocks.webdb.db = openDatabase("todo3", "1.0", "Todo manager", dbSize);

      }

     

      html5rocks.webdb.createTable = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("CREATE TABLE IF NOT EXISTS todo3(ID INTEGER PRIMARY KEY ASC, product123 TEXT, product_id TEXT,  cart_id TEXT,  price TEXT,  quantity TEXT,  category TEXT,  academy TEXT,  orderable TEXT, line TEXT)", []);

        });

      }

     

      html5rocks.webdb.addTodo = function(name, pid, cid, price, qty, category, academy, orderable) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          var addedOn = new Date();

          tx.executeSql("REPLACE INTO todo3(product123, product_id, cart_id, price, quantity, category, academy, orderable, line) VALUES (?,?,?,?,?,?,?,?,?)",

              [name, pid, cid, price, qty, category, academy, orderable, price],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

 html5rocks.webdb.updatetodo = function(price, id, qty, discount) {

var dsc = discount/100;

var dsc1 = price*dsc;

var dsc2 = price-dsc1;

var pri = price*qty

       var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

     

      html5rocks.webdb.onError = function(tx, e) {

        alert("There has been an error: " + e.message);

      }

     

      html5rocks.webdb.onSuccess = function(tx, r) {

        // re-render the data.

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

     

     

      html5rocks.webdb.getAllTodoItems = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT * FROM todo3", [], renderFunc,

              html5rocks.webdb.onError);

 

 

        });

      }

     

      html5rocks.webdb.deleteTodo = function(id) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 WHERE ID=?", [id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

 html5rocks.webdb.deleteTodo1 = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 where cart_id='<?php echo $cid; ?>'", [],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

     

      function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }

     

      function renderTodo(row) {

 

        return "<form type='post' onsubmit='Javascript:html5rocks.webdb.updatetodo(priceu"+row.ID+".value, idu"+row.ID+".value, qtyu"+row.ID+".value, discountu"+row.ID+".value); return false;'><table cellpadding='0' cellspacing='0' width='100%'><tr height='10' class='bord'><td width='10%'>[<a href='javascript:void(0);'  onclick='html5rocks.webdb.deleteTodo(" + row.ID +");'>Delete</a>]</td><td width='15%'>" + row.product123 +"</td><td width='15%'>" + row.category +"</td><td width='10%'><input id='qtyu" + row.ID +"' type='text' value='" + row.quantity +"' size='5' onfocus = 'getID(this)'><div style='Display:none'>" + row.quantity +"</div></td><td width='10%'><input id='discountu" + row.ID +"' type='text' value='' size='5' onfocus = 'getID(this)'/> </td><td width='30%'><input id='priceu" + row.ID +"' type='text' value='" + row.price +"' size='5' onfocus = 'getID(this)'/><input id='idu" + row.ID +"' type='hidden' value='" + row.ID +"' size='5' onfocus = 'getID(this)'/><div style='Display:none'>" + row.price +"</div><input name='submit' id='submit' type='submit' value='Update' /></td><td>$" + row.price * row.quantity +" </td></tr></table></form><hr>";

      }

     

     

       <?php

$sql = mysql_query("SELECT * FROM products where city='$city'");

 while($row = mysql_fetch_assoc($sql)){

$id =$row["id"];

?>

      function addTodo<?php echo $id; ?>() {

 

       

        var name<?php echo $id; ?> = document.getElementById("name<?php echo $id; ?>");

var pid<?php echo $id; ?> = document.getElementById("pid<?php echo $id; ?>");        var price<?php echo $id; ?> = document.getElementById("price<?php echo $id; ?>");

        var cid<?php echo $id; ?> = document.getElementById("cid<?php echo $id; ?>");

        var qty<?php echo $id; ?> = document.getElementById("qty<?php echo $id; ?>");

        var academy<?php echo $id; ?> = document.getElementById("academy<?php echo $id; ?>");

        var category<?php echo $id; ?> = document.getElementById("category<?php echo $id; ?>");      

var orderable<?php echo $id; ?> = document.getElementById("orderable<?php echo $id; ?>");

        html5rocks.webdb.addTodo(name<?php echo $id; ?>.value,pid<?php echo $id; ?>.value,cid<?php echo $id; ?>.value,price<?php echo $id; ?>.value,qty<?php echo $id; ?>.value,category<?php echo $id; ?>.value,academy<?php echo $id; ?>.value,orderable<?php echo $id; ?>.value);

      }

 

 

 <?php

 }

 ?>

 function init() {

        html5rocks.webdb.open();

        html5rocks.webdb.createTable();

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

    </script>

    <script> 

 html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


My question has to do with the update button in the “renderTodo” function.  If I update the price, this runs fine:

db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }


and runs this part:

  function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }


And this part right away:

html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }


But if I try to update the discount, it runs the previous snippet right away, but not this part right away until the update is clicked again!:

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


I have no idea why it won’t run that part right away!  does anyone have any suggestions for me?

[supanova_question]

please help within five minutes Science Assignment Help

Calculate ΔGo (in kJ/mol) for the following reaction at 1 atm and 25∘C: C2H6(g) + O2(g) → CO2(g)+ H2O (l) ΔGf∘ C2H6(g) = -32.89 kJ/mol; ΔGf∘ CO2(g) = -394.4 kJ/mol; ΔGf∘ H2O (l) = -237.2 kJ/mol 

[supanova_question]

https://anyessayhelp.com/

I want each box to have the popup on the bottom of the box 
So far i have this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Leo Design</title>

<style>

body {
font-family:"Courier New", Courier, monospace;
background-color:#333;
color:white;

}
p{
font-weight:300;
font-weight: bolder;
font-size:20px;
}

#tablaprincipal {
position: absolute;
left: 50%;
top: 50%;
z-index: 100;

margin-top: -200px;
margin-left: -270px;

}

<!-- Comienza el estilo PopUp -->
label {
position: relative;
}

.box {
position:absolute;
left: 0 ;
top: 100%;
z-index: 500;

/* previene errores en safari 5.1 */
-webkit-backface-visibility: hidden;

background-color: #eeeeee;
background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#999999));
background-image: -webkit-linear-gradient(top, #eeeeee, #999999);
background-image: -moz-linear-gradient(top, #eeeeee, #999999);
background-image: -ms-linear-gradient(top, #eeeeee, #999999);
background-image: -o-linear-gradient(top, #eeeeee, #999999);

-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;

-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;

width: 260px;
padding: 20px;
margin: 24px 0;
opacity: 0;

-webkit-transform: scale(0) skew(50deg);
-moz-transform: scale(0) skew(50deg);
-ms-transform: scale(0) skew(50deg);
-o-transform: scale(0) skew(50deg);

-webkit-transform-origin: 0px -30px;
-moz-transform-origin: 0px -30px;
-ms-transform-origin: 0px -30px;
-o-transform-origin: 0px -30px;

-webkit-transition: -webkit-transform ease-out .35s, opacity ease-out .4s;
-moz-transition: -moz-transform ease-out .35s, opacity ease-out .4s;
-ms-transition: -ms-transform ease-out .35s, opacity ease-out .4s;
-o-transition: -o-transform ease-out .35s, opacity ease-out .4s;
}

.box:after {
content: "";
position: absolute;
bottom: 100%;
left: 30px;
border-bottom: 20px solid #eee;
border-left: 14px solid transparent;
border-right: 14px solid transparent;
width: 0;
height: 0;
}

.popUpControl:checked ~ label > .box {
opacity: 1;
-webkit-transform: scale(1) skew(0deg);
-moz-transform: scale(1) skew(0deg);
-ms-transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
}
.popUpControl {
display: none;
}

.button {
/*--
background: blue;
color: white;
padding: 5px;
border-radius: 5px;
--*/
}

/* For dog example */
.box img {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#doggiezzz:checked ~ label > span:first-child {
display: none;
}
#doggiezzz:checked ~ label:before {
content: "Less Dog!";
}


/* For link example */
.link { color: white; }
.title { display: block; font-weight: bold; margin: 0 0 10px 0; color: black; font: bold 16px Sans-Serif; text-decoration: none; }
.copy { color: black; text-decoration: none; }


<!-- termina el popup -->

</style>

</head>

<body>

<h1 align="center">
Leo Design
</h1>
<table id="tablaprincipal" align="center" border="0px" bordercolor="" height="150px" width="540" cellspacing="6px" cellpadding="6" >
<tr>

<td bgcolor="#FF6666" width="135">
<div id="page-wrap">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">About</p></span>




<!--<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span>
<span class="box">
<img src="http://placedog.com/260/260">



</span>
</label>
-->


</td>
<td bgcolor="#33CC66" width="135"><p align="center">
Portfolio</p>
</td>

<td bgcolor="#3366FF" width="135">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">Contact</p></span>




</td>
</tr>
</table>
<div id="page-wrap">
<!--
<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span></span>
<span class="box">
<img src="http://placedog.com/260/260">
</span>
</label>
-->

<p>

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
</label>

</p>

</div>
</body>
</html>

[supanova_question]

Rank the foll solutions in order of increasing osmotic pressure 1 low 4 high Science Assignment Help

 0.1 mol of propionic acid in 1 kg of water. 
 0.1 mol of fructose in 0.5 kg of water. 
 0.1 mol of HNO3 in 1 kg of water. 

 0.1 mol of Li2SO4 in 1 kg of water. 

[supanova_question]

[supanova_question]

The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help

The WWI song, “I Didn’t Raise My Boy to Be a
Coward” is a direct reflection of the time in which the song was published. In
your own words, explain why



The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help[supanova_question]

GMC Sierra Air condtioning not working. Other Assignment Help

I have a 20002 GMC Sierra 2500 HD 6.6 L Diesel. When I try and turn the Air conditioning on the light blinks 3 times and turns off right away It occasionally will turn on if the the truck has been running for more than 1 hour. There have been days when its 90 degrees and it will not turn on. We have tried changing the controls inside, and that did not work. The controls inside, are computer climate control, with 3 dials, 1 for fan speed, 1 for temperature set and the other for the vent setting. What do you think it could be?

[supanova_question]

Pearl Harbor Documentary Other Assignment Help

Please help someone:) My dad seen a documentary on either the History Channel or Military Channel about a New Zealand CB/Radio operator that was trying to send a message to the US to let them know that the Japanese were about to attack Pearl Harbor and the US was ignoring the CBer’s warning to them and the rest is history. Of course we all know what happened that fateful day. My dad seen this on TV about 3 or 4 yrs ago. Again if anyone has seen or knows the name of this documentary could you please let me know so I can try to get a copy of it for my dad. He wanted to see it so bad again and he cannot remember the name of it. Thanks for your help.

[supanova_question]

HTML5 Websql Programming Assignment Help

Hi, please bear with me as I struggle to ask this question.   Ok, here is most of the code I am working with:

<script>

      var html5rocks = {};

      html5rocks.webdb = {};

      html5rocks.webdb.db = null;

     

      html5rocks.webdb.open = function() {

        var dbSize = 5 * 1024 * 1024; // 5MB

        html5rocks.webdb.db = openDatabase("todo3", "1.0", "Todo manager", dbSize);

      }

     

      html5rocks.webdb.createTable = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("CREATE TABLE IF NOT EXISTS todo3(ID INTEGER PRIMARY KEY ASC, product123 TEXT, product_id TEXT,  cart_id TEXT,  price TEXT,  quantity TEXT,  category TEXT,  academy TEXT,  orderable TEXT, line TEXT)", []);

        });

      }

     

      html5rocks.webdb.addTodo = function(name, pid, cid, price, qty, category, academy, orderable) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          var addedOn = new Date();

          tx.executeSql("REPLACE INTO todo3(product123, product_id, cart_id, price, quantity, category, academy, orderable, line) VALUES (?,?,?,?,?,?,?,?,?)",

              [name, pid, cid, price, qty, category, academy, orderable, price],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

 html5rocks.webdb.updatetodo = function(price, id, qty, discount) {

var dsc = discount/100;

var dsc1 = price*dsc;

var dsc2 = price-dsc1;

var pri = price*qty

       var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

     

      html5rocks.webdb.onError = function(tx, e) {

        alert("There has been an error: " + e.message);

      }

     

      html5rocks.webdb.onSuccess = function(tx, r) {

        // re-render the data.

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

     

     

      html5rocks.webdb.getAllTodoItems = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT * FROM todo3", [], renderFunc,

              html5rocks.webdb.onError);

 

 

        });

      }

     

      html5rocks.webdb.deleteTodo = function(id) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 WHERE ID=?", [id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

 html5rocks.webdb.deleteTodo1 = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 where cart_id='<?php echo $cid; ?>'", [],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

     

      function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }

     

      function renderTodo(row) {

 

        return "<form type='post' onsubmit='Javascript:html5rocks.webdb.updatetodo(priceu"+row.ID+".value, idu"+row.ID+".value, qtyu"+row.ID+".value, discountu"+row.ID+".value); return false;'><table cellpadding='0' cellspacing='0' width='100%'><tr height='10' class='bord'><td width='10%'>[<a href='javascript:void(0);'  onclick='html5rocks.webdb.deleteTodo(" + row.ID +");'>Delete</a>]</td><td width='15%'>" + row.product123 +"</td><td width='15%'>" + row.category +"</td><td width='10%'><input id='qtyu" + row.ID +"' type='text' value='" + row.quantity +"' size='5' onfocus = 'getID(this)'><div style='Display:none'>" + row.quantity +"</div></td><td width='10%'><input id='discountu" + row.ID +"' type='text' value='' size='5' onfocus = 'getID(this)'/> </td><td width='30%'><input id='priceu" + row.ID +"' type='text' value='" + row.price +"' size='5' onfocus = 'getID(this)'/><input id='idu" + row.ID +"' type='hidden' value='" + row.ID +"' size='5' onfocus = 'getID(this)'/><div style='Display:none'>" + row.price +"</div><input name='submit' id='submit' type='submit' value='Update' /></td><td>$" + row.price * row.quantity +" </td></tr></table></form><hr>";

      }

     

     

       <?php

$sql = mysql_query("SELECT * FROM products where city='$city'");

 while($row = mysql_fetch_assoc($sql)){

$id =$row["id"];

?>

      function addTodo<?php echo $id; ?>() {

 

       

        var name<?php echo $id; ?> = document.getElementById("name<?php echo $id; ?>");

var pid<?php echo $id; ?> = document.getElementById("pid<?php echo $id; ?>");        var price<?php echo $id; ?> = document.getElementById("price<?php echo $id; ?>");

        var cid<?php echo $id; ?> = document.getElementById("cid<?php echo $id; ?>");

        var qty<?php echo $id; ?> = document.getElementById("qty<?php echo $id; ?>");

        var academy<?php echo $id; ?> = document.getElementById("academy<?php echo $id; ?>");

        var category<?php echo $id; ?> = document.getElementById("category<?php echo $id; ?>");      

var orderable<?php echo $id; ?> = document.getElementById("orderable<?php echo $id; ?>");

        html5rocks.webdb.addTodo(name<?php echo $id; ?>.value,pid<?php echo $id; ?>.value,cid<?php echo $id; ?>.value,price<?php echo $id; ?>.value,qty<?php echo $id; ?>.value,category<?php echo $id; ?>.value,academy<?php echo $id; ?>.value,orderable<?php echo $id; ?>.value);

      }

 

 

 <?php

 }

 ?>

 function init() {

        html5rocks.webdb.open();

        html5rocks.webdb.createTable();

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

    </script>

    <script> 

 html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


My question has to do with the update button in the “renderTodo” function.  If I update the price, this runs fine:

db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }


and runs this part:

  function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }


And this part right away:

html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }


But if I try to update the discount, it runs the previous snippet right away, but not this part right away until the update is clicked again!:

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


I have no idea why it won’t run that part right away!  does anyone have any suggestions for me?

[supanova_question]

please help within five minutes Science Assignment Help

Calculate ΔGo (in kJ/mol) for the following reaction at 1 atm and 25∘C: C2H6(g) + O2(g) → CO2(g)+ H2O (l) ΔGf∘ C2H6(g) = -32.89 kJ/mol; ΔGf∘ CO2(g) = -394.4 kJ/mol; ΔGf∘ H2O (l) = -237.2 kJ/mol 

[supanova_question]

https://anyessayhelp.com/

I want each box to have the popup on the bottom of the box 
So far i have this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Leo Design</title>

<style>

body {
font-family:"Courier New", Courier, monospace;
background-color:#333;
color:white;

}
p{
font-weight:300;
font-weight: bolder;
font-size:20px;
}

#tablaprincipal {
position: absolute;
left: 50%;
top: 50%;
z-index: 100;

margin-top: -200px;
margin-left: -270px;

}

<!-- Comienza el estilo PopUp -->
label {
position: relative;
}

.box {
position:absolute;
left: 0 ;
top: 100%;
z-index: 500;

/* previene errores en safari 5.1 */
-webkit-backface-visibility: hidden;

background-color: #eeeeee;
background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#999999));
background-image: -webkit-linear-gradient(top, #eeeeee, #999999);
background-image: -moz-linear-gradient(top, #eeeeee, #999999);
background-image: -ms-linear-gradient(top, #eeeeee, #999999);
background-image: -o-linear-gradient(top, #eeeeee, #999999);

-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;

-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;

width: 260px;
padding: 20px;
margin: 24px 0;
opacity: 0;

-webkit-transform: scale(0) skew(50deg);
-moz-transform: scale(0) skew(50deg);
-ms-transform: scale(0) skew(50deg);
-o-transform: scale(0) skew(50deg);

-webkit-transform-origin: 0px -30px;
-moz-transform-origin: 0px -30px;
-ms-transform-origin: 0px -30px;
-o-transform-origin: 0px -30px;

-webkit-transition: -webkit-transform ease-out .35s, opacity ease-out .4s;
-moz-transition: -moz-transform ease-out .35s, opacity ease-out .4s;
-ms-transition: -ms-transform ease-out .35s, opacity ease-out .4s;
-o-transition: -o-transform ease-out .35s, opacity ease-out .4s;
}

.box:after {
content: "";
position: absolute;
bottom: 100%;
left: 30px;
border-bottom: 20px solid #eee;
border-left: 14px solid transparent;
border-right: 14px solid transparent;
width: 0;
height: 0;
}

.popUpControl:checked ~ label > .box {
opacity: 1;
-webkit-transform: scale(1) skew(0deg);
-moz-transform: scale(1) skew(0deg);
-ms-transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
}
.popUpControl {
display: none;
}

.button {
/*--
background: blue;
color: white;
padding: 5px;
border-radius: 5px;
--*/
}

/* For dog example */
.box img {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#doggiezzz:checked ~ label > span:first-child {
display: none;
}
#doggiezzz:checked ~ label:before {
content: "Less Dog!";
}


/* For link example */
.link { color: white; }
.title { display: block; font-weight: bold; margin: 0 0 10px 0; color: black; font: bold 16px Sans-Serif; text-decoration: none; }
.copy { color: black; text-decoration: none; }


<!-- termina el popup -->

</style>

</head>

<body>

<h1 align="center">
Leo Design
</h1>
<table id="tablaprincipal" align="center" border="0px" bordercolor="" height="150px" width="540" cellspacing="6px" cellpadding="6" >
<tr>

<td bgcolor="#FF6666" width="135">
<div id="page-wrap">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">About</p></span>




<!--<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span>
<span class="box">
<img src="http://placedog.com/260/260">



</span>
</label>
-->


</td>
<td bgcolor="#33CC66" width="135"><p align="center">
Portfolio</p>
</td>

<td bgcolor="#3366FF" width="135">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">Contact</p></span>




</td>
</tr>
</table>
<div id="page-wrap">
<!--
<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span></span>
<span class="box">
<img src="http://placedog.com/260/260">
</span>
</label>
-->

<p>

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
</label>

</p>

</div>
</body>
</html>

[supanova_question]

Rank the foll solutions in order of increasing osmotic pressure 1 low 4 high Science Assignment Help

 0.1 mol of propionic acid in 1 kg of water. 
 0.1 mol of fructose in 0.5 kg of water. 
 0.1 mol of HNO3 in 1 kg of water. 

 0.1 mol of Li2SO4 in 1 kg of water. 

[supanova_question]

[supanova_question]

The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help

The WWI song, “I Didn’t Raise My Boy to Be a
Coward” is a direct reflection of the time in which the song was published. In
your own words, explain why



The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help[supanova_question]

GMC Sierra Air condtioning not working. Other Assignment Help

I have a 20002 GMC Sierra 2500 HD 6.6 L Diesel. When I try and turn the Air conditioning on the light blinks 3 times and turns off right away It occasionally will turn on if the the truck has been running for more than 1 hour. There have been days when its 90 degrees and it will not turn on. We have tried changing the controls inside, and that did not work. The controls inside, are computer climate control, with 3 dials, 1 for fan speed, 1 for temperature set and the other for the vent setting. What do you think it could be?

[supanova_question]

Pearl Harbor Documentary Other Assignment Help

Please help someone:) My dad seen a documentary on either the History Channel or Military Channel about a New Zealand CB/Radio operator that was trying to send a message to the US to let them know that the Japanese were about to attack Pearl Harbor and the US was ignoring the CBer’s warning to them and the rest is history. Of course we all know what happened that fateful day. My dad seen this on TV about 3 or 4 yrs ago. Again if anyone has seen or knows the name of this documentary could you please let me know so I can try to get a copy of it for my dad. He wanted to see it so bad again and he cannot remember the name of it. Thanks for your help.

[supanova_question]

HTML5 Websql Programming Assignment Help

Hi, please bear with me as I struggle to ask this question.   Ok, here is most of the code I am working with:

<script>

      var html5rocks = {};

      html5rocks.webdb = {};

      html5rocks.webdb.db = null;

     

      html5rocks.webdb.open = function() {

        var dbSize = 5 * 1024 * 1024; // 5MB

        html5rocks.webdb.db = openDatabase("todo3", "1.0", "Todo manager", dbSize);

      }

     

      html5rocks.webdb.createTable = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("CREATE TABLE IF NOT EXISTS todo3(ID INTEGER PRIMARY KEY ASC, product123 TEXT, product_id TEXT,  cart_id TEXT,  price TEXT,  quantity TEXT,  category TEXT,  academy TEXT,  orderable TEXT, line TEXT)", []);

        });

      }

     

      html5rocks.webdb.addTodo = function(name, pid, cid, price, qty, category, academy, orderable) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          var addedOn = new Date();

          tx.executeSql("REPLACE INTO todo3(product123, product_id, cart_id, price, quantity, category, academy, orderable, line) VALUES (?,?,?,?,?,?,?,?,?)",

              [name, pid, cid, price, qty, category, academy, orderable, price],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

 html5rocks.webdb.updatetodo = function(price, id, qty, discount) {

var dsc = discount/100;

var dsc1 = price*dsc;

var dsc2 = price-dsc1;

var pri = price*qty

       var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

     

      html5rocks.webdb.onError = function(tx, e) {

        alert("There has been an error: " + e.message);

      }

     

      html5rocks.webdb.onSuccess = function(tx, r) {

        // re-render the data.

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

     

     

      html5rocks.webdb.getAllTodoItems = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT * FROM todo3", [], renderFunc,

              html5rocks.webdb.onError);

 

 

        });

      }

     

      html5rocks.webdb.deleteTodo = function(id) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 WHERE ID=?", [id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

 html5rocks.webdb.deleteTodo1 = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 where cart_id='<?php echo $cid; ?>'", [],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

     

      function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }

     

      function renderTodo(row) {

 

        return "<form type='post' onsubmit='Javascript:html5rocks.webdb.updatetodo(priceu"+row.ID+".value, idu"+row.ID+".value, qtyu"+row.ID+".value, discountu"+row.ID+".value); return false;'><table cellpadding='0' cellspacing='0' width='100%'><tr height='10' class='bord'><td width='10%'>[<a href='javascript:void(0);'  onclick='html5rocks.webdb.deleteTodo(" + row.ID +");'>Delete</a>]</td><td width='15%'>" + row.product123 +"</td><td width='15%'>" + row.category +"</td><td width='10%'><input id='qtyu" + row.ID +"' type='text' value='" + row.quantity +"' size='5' onfocus = 'getID(this)'><div style='Display:none'>" + row.quantity +"</div></td><td width='10%'><input id='discountu" + row.ID +"' type='text' value='' size='5' onfocus = 'getID(this)'/> </td><td width='30%'><input id='priceu" + row.ID +"' type='text' value='" + row.price +"' size='5' onfocus = 'getID(this)'/><input id='idu" + row.ID +"' type='hidden' value='" + row.ID +"' size='5' onfocus = 'getID(this)'/><div style='Display:none'>" + row.price +"</div><input name='submit' id='submit' type='submit' value='Update' /></td><td>$" + row.price * row.quantity +" </td></tr></table></form><hr>";

      }

     

     

       <?php

$sql = mysql_query("SELECT * FROM products where city='$city'");

 while($row = mysql_fetch_assoc($sql)){

$id =$row["id"];

?>

      function addTodo<?php echo $id; ?>() {

 

       

        var name<?php echo $id; ?> = document.getElementById("name<?php echo $id; ?>");

var pid<?php echo $id; ?> = document.getElementById("pid<?php echo $id; ?>");        var price<?php echo $id; ?> = document.getElementById("price<?php echo $id; ?>");

        var cid<?php echo $id; ?> = document.getElementById("cid<?php echo $id; ?>");

        var qty<?php echo $id; ?> = document.getElementById("qty<?php echo $id; ?>");

        var academy<?php echo $id; ?> = document.getElementById("academy<?php echo $id; ?>");

        var category<?php echo $id; ?> = document.getElementById("category<?php echo $id; ?>");      

var orderable<?php echo $id; ?> = document.getElementById("orderable<?php echo $id; ?>");

        html5rocks.webdb.addTodo(name<?php echo $id; ?>.value,pid<?php echo $id; ?>.value,cid<?php echo $id; ?>.value,price<?php echo $id; ?>.value,qty<?php echo $id; ?>.value,category<?php echo $id; ?>.value,academy<?php echo $id; ?>.value,orderable<?php echo $id; ?>.value);

      }

 

 

 <?php

 }

 ?>

 function init() {

        html5rocks.webdb.open();

        html5rocks.webdb.createTable();

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

    </script>

    <script> 

 html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


My question has to do with the update button in the “renderTodo” function.  If I update the price, this runs fine:

db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }


and runs this part:

  function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }


And this part right away:

html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }


But if I try to update the discount, it runs the previous snippet right away, but not this part right away until the update is clicked again!:

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


I have no idea why it won’t run that part right away!  does anyone have any suggestions for me?

[supanova_question]

please help within five minutes Science Assignment Help

Calculate ΔGo (in kJ/mol) for the following reaction at 1 atm and 25∘C: C2H6(g) + O2(g) → CO2(g)+ H2O (l) ΔGf∘ C2H6(g) = -32.89 kJ/mol; ΔGf∘ CO2(g) = -394.4 kJ/mol; ΔGf∘ H2O (l) = -237.2 kJ/mol 

[supanova_question]

https://anyessayhelp.com/

I want each box to have the popup on the bottom of the box 
So far i have this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Leo Design</title>

<style>

body {
font-family:"Courier New", Courier, monospace;
background-color:#333;
color:white;

}
p{
font-weight:300;
font-weight: bolder;
font-size:20px;
}

#tablaprincipal {
position: absolute;
left: 50%;
top: 50%;
z-index: 100;

margin-top: -200px;
margin-left: -270px;

}

<!-- Comienza el estilo PopUp -->
label {
position: relative;
}

.box {
position:absolute;
left: 0 ;
top: 100%;
z-index: 500;

/* previene errores en safari 5.1 */
-webkit-backface-visibility: hidden;

background-color: #eeeeee;
background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#999999));
background-image: -webkit-linear-gradient(top, #eeeeee, #999999);
background-image: -moz-linear-gradient(top, #eeeeee, #999999);
background-image: -ms-linear-gradient(top, #eeeeee, #999999);
background-image: -o-linear-gradient(top, #eeeeee, #999999);

-moz-border-radius: 20px;
-webkit-border-radius: 20px;
border-radius: 20px;

-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;

width: 260px;
padding: 20px;
margin: 24px 0;
opacity: 0;

-webkit-transform: scale(0) skew(50deg);
-moz-transform: scale(0) skew(50deg);
-ms-transform: scale(0) skew(50deg);
-o-transform: scale(0) skew(50deg);

-webkit-transform-origin: 0px -30px;
-moz-transform-origin: 0px -30px;
-ms-transform-origin: 0px -30px;
-o-transform-origin: 0px -30px;

-webkit-transition: -webkit-transform ease-out .35s, opacity ease-out .4s;
-moz-transition: -moz-transform ease-out .35s, opacity ease-out .4s;
-ms-transition: -ms-transform ease-out .35s, opacity ease-out .4s;
-o-transition: -o-transform ease-out .35s, opacity ease-out .4s;
}

.box:after {
content: "";
position: absolute;
bottom: 100%;
left: 30px;
border-bottom: 20px solid #eee;
border-left: 14px solid transparent;
border-right: 14px solid transparent;
width: 0;
height: 0;
}

.popUpControl:checked ~ label > .box {
opacity: 1;
-webkit-transform: scale(1) skew(0deg);
-moz-transform: scale(1) skew(0deg);
-ms-transform: scale(1) skew(0deg);
-o-transform: scale(1) skew(0deg);
}
.popUpControl {
display: none;
}

.button {
/*--
background: blue;
color: white;
padding: 5px;
border-radius: 5px;
--*/
}

/* For dog example */
.box img {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
}
#doggiezzz:checked ~ label > span:first-child {
display: none;
}
#doggiezzz:checked ~ label:before {
content: "Less Dog!";
}


/* For link example */
.link { color: white; }
.title { display: block; font-weight: bold; margin: 0 0 10px 0; color: black; font: bold 16px Sans-Serif; text-decoration: none; }
.copy { color: black; text-decoration: none; }


<!-- termina el popup -->

</style>

</head>

<body>

<h1 align="center">
Leo Design
</h1>
<table id="tablaprincipal" align="center" border="0px" bordercolor="" height="150px" width="540" cellspacing="6px" cellpadding="6" >
<tr>

<td bgcolor="#FF6666" width="135">
<div id="page-wrap">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">About</p></span>




<!--<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span>
<span class="box">
<img src="http://placedog.com/260/260">



</span>
</label>
-->


</td>
<td bgcolor="#33CC66" width="135"><p align="center">
Portfolio</p>
</td>

<td bgcolor="#3366FF" width="135">

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
<p align="center">Contact</p></span>




</td>
</tr>
</table>
<div id="page-wrap">
<!--
<input type="checkbox" id="doggiezzz" class="popUpControl">
<label for="doggiezzz" class="button">
<span></span>
<span class="box">
<img src="http://placedog.com/260/260">
</span>
</label>
-->

<p>

<input type="checkbox" id="linkie" class="popUpControl">
<label for="linkie" class="link">
<span class="box">
<span class="title">About me</span>
<span class="copy">bios</span>
</span>
</label>

</p>

</div>
</body>
</html>

[supanova_question]

Rank the foll solutions in order of increasing osmotic pressure 1 low 4 high Science Assignment Help

 0.1 mol of propionic acid in 1 kg of water. 
 0.1 mol of fructose in 0.5 kg of water. 
 0.1 mol of HNO3 in 1 kg of water. 

 0.1 mol of Li2SO4 in 1 kg of water. 

[supanova_question]

[supanova_question]

The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help

The WWI song, “I Didn’t Raise My Boy to Be a
Coward” is a direct reflection of the time in which the song was published. In
your own words, explain why



The WWI song, “I Didn’t Raise My Boy to Be a Coward” is a direct reflection of the time in which the Humanities Assignment Help[supanova_question]

GMC Sierra Air condtioning not working. Other Assignment Help

I have a 20002 GMC Sierra 2500 HD 6.6 L Diesel. When I try and turn the Air conditioning on the light blinks 3 times and turns off right away It occasionally will turn on if the the truck has been running for more than 1 hour. There have been days when its 90 degrees and it will not turn on. We have tried changing the controls inside, and that did not work. The controls inside, are computer climate control, with 3 dials, 1 for fan speed, 1 for temperature set and the other for the vent setting. What do you think it could be?

[supanova_question]

Pearl Harbor Documentary Other Assignment Help

Please help someone:) My dad seen a documentary on either the History Channel or Military Channel about a New Zealand CB/Radio operator that was trying to send a message to the US to let them know that the Japanese were about to attack Pearl Harbor and the US was ignoring the CBer’s warning to them and the rest is history. Of course we all know what happened that fateful day. My dad seen this on TV about 3 or 4 yrs ago. Again if anyone has seen or knows the name of this documentary could you please let me know so I can try to get a copy of it for my dad. He wanted to see it so bad again and he cannot remember the name of it. Thanks for your help.

[supanova_question]

HTML5 Websql Programming Assignment Help

Hi, please bear with me as I struggle to ask this question.   Ok, here is most of the code I am working with:

<script>

      var html5rocks = {};

      html5rocks.webdb = {};

      html5rocks.webdb.db = null;

     

      html5rocks.webdb.open = function() {

        var dbSize = 5 * 1024 * 1024; // 5MB

        html5rocks.webdb.db = openDatabase("todo3", "1.0", "Todo manager", dbSize);

      }

     

      html5rocks.webdb.createTable = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("CREATE TABLE IF NOT EXISTS todo3(ID INTEGER PRIMARY KEY ASC, product123 TEXT, product_id TEXT,  cart_id TEXT,  price TEXT,  quantity TEXT,  category TEXT,  academy TEXT,  orderable TEXT, line TEXT)", []);

        });

      }

     

      html5rocks.webdb.addTodo = function(name, pid, cid, price, qty, category, academy, orderable) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          var addedOn = new Date();

          tx.executeSql("REPLACE INTO todo3(product123, product_id, cart_id, price, quantity, category, academy, orderable, line) VALUES (?,?,?,?,?,?,?,?,?)",

              [name, pid, cid, price, qty, category, academy, orderable, price],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

 html5rocks.webdb.updatetodo = function(price, id, qty, discount) {

var dsc = discount/100;

var dsc1 = price*dsc;

var dsc2 = price-dsc1;

var pri = price*qty

       var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }

     

      html5rocks.webdb.onError = function(tx, e) {

        alert("There has been an error: " + e.message);

      }

     

      html5rocks.webdb.onSuccess = function(tx, r) {

        // re-render the data.

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

     

     

      html5rocks.webdb.getAllTodoItems = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT * FROM todo3", [], renderFunc,

              html5rocks.webdb.onError);

 

 

        });

      }

     

      html5rocks.webdb.deleteTodo = function(id) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 WHERE ID=?", [id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

 html5rocks.webdb.deleteTodo1 = function() {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx){

          tx.executeSql("DELETE FROM todo3 where cart_id='<?php echo $cid; ?>'", [],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

          });

      }

     

      function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }

     

      function renderTodo(row) {

 

        return "<form type='post' onsubmit='Javascript:html5rocks.webdb.updatetodo(priceu"+row.ID+".value, idu"+row.ID+".value, qtyu"+row.ID+".value, discountu"+row.ID+".value); return false;'><table cellpadding='0' cellspacing='0' width='100%'><tr height='10' class='bord'><td width='10%'>[<a href='javascript:void(0);'  onclick='html5rocks.webdb.deleteTodo(" + row.ID +");'>Delete</a>]</td><td width='15%'>" + row.product123 +"</td><td width='15%'>" + row.category +"</td><td width='10%'><input id='qtyu" + row.ID +"' type='text' value='" + row.quantity +"' size='5' onfocus = 'getID(this)'><div style='Display:none'>" + row.quantity +"</div></td><td width='10%'><input id='discountu" + row.ID +"' type='text' value='' size='5' onfocus = 'getID(this)'/> </td><td width='30%'><input id='priceu" + row.ID +"' type='text' value='" + row.price +"' size='5' onfocus = 'getID(this)'/><input id='idu" + row.ID +"' type='hidden' value='" + row.ID +"' size='5' onfocus = 'getID(this)'/><div style='Display:none'>" + row.price +"</div><input name='submit' id='submit' type='submit' value='Update' /></td><td>$" + row.price * row.quantity +" </td></tr></table></form><hr>";

      }

     

     

       <?php

$sql = mysql_query("SELECT * FROM products where city='$city'");

 while($row = mysql_fetch_assoc($sql)){

$id =$row["id"];

?>

      function addTodo<?php echo $id; ?>() {

 

       

        var name<?php echo $id; ?> = document.getElementById("name<?php echo $id; ?>");

var pid<?php echo $id; ?> = document.getElementById("pid<?php echo $id; ?>");        var price<?php echo $id; ?> = document.getElementById("price<?php echo $id; ?>");

        var cid<?php echo $id; ?> = document.getElementById("cid<?php echo $id; ?>");

        var qty<?php echo $id; ?> = document.getElementById("qty<?php echo $id; ?>");

        var academy<?php echo $id; ?> = document.getElementById("academy<?php echo $id; ?>");

        var category<?php echo $id; ?> = document.getElementById("category<?php echo $id; ?>");      

var orderable<?php echo $id; ?> = document.getElementById("orderable<?php echo $id; ?>");

        html5rocks.webdb.addTodo(name<?php echo $id; ?>.value,pid<?php echo $id; ?>.value,cid<?php echo $id; ?>.value,price<?php echo $id; ?>.value,qty<?php echo $id; ?>.value,category<?php echo $id; ?>.value,academy<?php echo $id; ?>.value,orderable<?php echo $id; ?>.value);

      }

 

 

 <?php

 }

 ?>

 function init() {

        html5rocks.webdb.open();

        html5rocks.webdb.createTable();

        html5rocks.webdb.getAllTodoItems(loadTodoItems);

        html5rocks.webdb.getAllTodoItems123(loadTodoItems123);

      }

    </script>

    <script> 

 html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


My question has to do with the update button in the “renderTodo” function.  If I update the price, this runs fine:

db.transaction(function(tx){

          tx.executeSql("UPDATE todo3 SET price=?, quantity=?, line=? WHERE id=?;",

              [dsc2, qty, pri, id],

              html5rocks.webdb.onSuccess,

              html5rocks.webdb.onError);

         });

      }


and runs this part:

  function loadTodoItems(tx, rs) {

        var rowOutput = "";

        var todoItems = document.getElementById("todoItems");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo(rs.rows.item(i));

        }

     

        todoItems.innerHTML = rowOutput;

      }


And this part right away:

html5rocks.webdb.getAllTodoItems123 = function(renderFunc) {

        var db = html5rocks.webdb.db;

        db.transaction(function(tx) {

          tx.executeSql("SELECT SUM(line) as lin from todo3 where cart_id='<?php echo $cid; ?>'", [], renderFunc,              

              html5rocks.webdb.onError);

 

 

        });

      }


But if I try to update the discount, it runs the previous snippet right away, but not this part right away until the update is clicked again!:

 function loadTodoItems123(tx, rs) {

        var rowOutput = "";

        var todoItems123 = document.getElementById("todoItems123");

        for (var i=0; i < rs.rows.length; i++) {

          rowOutput += renderTodo123(rs.rows.item(i));

        }

     

        todoItems123.innerHTML = rowOutput;

      }function renderTodo123(row) {

 document.getElementById('total').value=row.lin;

 return "<font color='white'>.................</font>$" + row.lin;

 };

 </script>


I have no idea why it won’t run that part right away!  does anyone have any suggestions for me?

[supanova_question]

please help within five minutes Science Assignment Help

Calculate ΔGo (in kJ/mol) for the following reaction at 1 atm and 25∘C: C2H6(g) + O2(g) → CO2(g)+ H2O (l) ΔGf∘ C2H6(g) = -32.89 kJ/mol; ΔGf∘ CO2(g) = -394.4 kJ/mol; ΔGf∘ H2O (l) = -237.2 kJ/mol 

[supanova_question]

can some one please help me please fast fast Science Assignment Help

can some one please help me please fast fast Science Assignment Help

× How can I help you?