Jump to content

Javascript Help


Th3Boss

Recommended Posts

Never used javascript before so trying to figure this out.

 

Page 1:

<?php
$DataTypeID="599";
include("Page2.php");
?>

 

 

Page 2:

<head>
<script type="text/javascript">
$(function() {
$('.Fitting .Info').on('click', showItemInfo);
});

function showItemInfo() {
var typeID = $(this).attr('data-typeid');
CCPEVE.showInfo(typeID);
}
</script>
</head>
<body>
<div class="Fitting">
<div class="Info" data-typeid == <?$DataTypeID?> title="View">INFO</div>
</div>
</body>
 

 

Pretty sure this is wrong

 

 

data-typeid == <?$DataTypeID?>
 

 

How do I get this to work?

Link to comment
https://forums.phpfreaks.com/topic/276072-javascript-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.