Jump to content

How To Use Javascript Variable In Smarty Section Loop


safey

Recommended Posts

I don't know the syntax , couldn't find anything similar on the net

please help :

 

Code:

	<script type="text/javascript">
				var u=$('#2').find('tbody > tr').size();
				<%section name='i' start=0 loop=u%>
				  alert('in loop');
			   <%/section%>
			 </script>

Edited by safey
Link to comment
Share on other sites

Javascript code and its variables run/exist in the browser after the page has been sent from the server to the browser. Smarty template logic and its variables run/exist on the server when the page is requested.

 

Smary can produce and output javascript on a page, but the only thing that javascript can do to a server is make a http request.

 

To do what you are asking would require that you use AJAX to make a http request to a page on the server to pass the value in u as a GET or POST parameter, then send back the resulting html from the smarty logic and insert it into the DOM on the page.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.