Search:
Type: Posts; User: MortenManden
Search:
Search took 0.01 seconds.
-
Tested this in IE, Chrome, Safari, Firefox (latest versions 2012-11-27):
& #13; (Without space between & and #)
Works in all of them...
-
Have found this solution - not elegant, but it works:
<script>
var xhr = $.ajax({
type: "GET",
url: "/files/billeder/ecom/beskrivelser/<product.id>.html",
success:...
-
Yes, the above solution works...
However, it has a couple of drawbacks.
First: It retrieves the entire file - I only need the header info.
Second: I only need header info, so all iframes will be...
-
Have simplified my code from above a bit:
<iframe src="myfile.html" id="product" style="width:100%; margin-top:-20px;"> </iframe>
document.getElementById('product').onload = function(){...
-
Then need to feed your form with the id
Then you need to call the function with the id
-
You give your div an id
Then need to feed your form with the id
<head>
<script>
function myFunction(mydiv)
{
alert(document.getElementById(mydiv).innerHTML);
}
</script>
-
I have a product list that is generated by asp
I have product description for each product in a html file
each html file is named: <product.id>.html
html file size is only 1-3 kb
Within the...
|
|