I have small project in which i have different news. And i am giving every news a div id.Please check the demo here:enter link description here. In current page i have shown only small portion of news.And when you click on this news then another page should open which will show the complete news on which you click. So i have used javascript to take the id to identify each individual news. And its working fine for me. But now i want to pass this id in url so that i can take this id and show the complete news in another page. It should be look like this: complete_news.php?id= . I am trying to do the same thing but now working.Any help.Thanks. Here is my code: Html Code
<table width="538" cellpadding="0" cellspacing="0" border="1">
<a href="complete_news.php?id=" class="TrackClick" id="01">
<div class="welcome-rahmen lng toggleNews" id="news_269_kurz">
<p class="welcome-breadcrump">Montag, 19.05.2014</p>
<p class="welcome-subheadline">Teilnahme von MAN Top Used an der Samoter 2014</p>
<div class="newsText">
<p class="welcome-text"><img src="http://intern.autodo.de/admin/news/man-it.jpg" width="165" class="text_fixed" border="0"></p>
<p class="welcome-text">Die 29. Internationale Erd- und Bautechnik-Ausstellung Samoter fand zwischen dem 8. und 11. Mai in Verona statt und zog rund 100.000 Besucher an. Samoter ist die wichtigste italienische Messe ihrer Art, die den Themen Erdbewegung, Hochbau und Baumaschinen gewidmet ist. Zugleich ist diese Veranstaltung damit auch f? europ?chen Markt bedeutsam.</p>
</div>
</div>
</a>
</table
<table width="538" cellpadding="0" cellspacing="0" border="1">
<a href="complete_news.php=id=" class="TrackClick" id="02">
<div class="welcome-rahmen lng toggleNews" id="news_264_kurz">
<p class="welcome-breadcrump">Freitag, 24.01.2014</p>
<p class="welcome-subheadline">Kaufvertrag: neue Porsche-Vorlage zum Drucken!</p>
<div class="newsText">
<img src="http://intern.autodo.de/admin/news/porsche-kaufvertrag.jpg" border="0" align="right" class="img_fixed" width=60><p class="welcome-text">Ihr AMO Druckcenter bietet Ihnen ab sofort die M?chkeit, Kaufvertr? im Porsche-Design zu nutzen.</p>
<p class="page-breadcrump">AutoDo!-Team</p>
</div>
</div>
</a>
</table>
Javascript Code:
$(function() {
$('.TrackClick').click( function() {
var $this = $(this);
var href = $this.attr('href');
window.open(href,'','width=650,height=400,scrollbars=yes,left=150,top=100,screenX=150,screenY=100');
alert( $this.attr('id') );
return false;
});
});