hi there im trying to pass my jquery variable onto php
j query bit
<script> $(document).ready(function() {
$(function() {
$( "#tabs" ).tabs().find( ".ui-tabs-nav" );
});
$("#resizable").resizable({ maxWidth: 500, minWidth: 250 ,handles:'e', grid: [1, 1] } );
var txt =$("#resizable").width() * 2; $("#test").text('Template Width: ' + txt + 'px');
$("#resizable").resize(function() {
txt = $("#resizable").width() * 2;
$("#test").text('Template Width:' + txt + 'px');
what i want to do is call my txt variable into php for example
<?php $templatewidth = (myjquery variable txt) ;?>