View Full Version : Pass a vBulletin variable to Javascript?
TWood
05-31-2011, 01:40 AM
There is a vBulletin variable called {vb:raw criteriaDisplay} that can be called into a template just by naming it:
<p>{vb:raw criteriaDisplay}</p>
will show the current value. The current value is the Tag search term that is used to create the tag search results. (I edited out the "Tag:" part in the PHP file that creates it, so your Tag search result list may include that part.)
I need to access that variable within a Javascript on the same page that calls in ads based on its value. So far we haven't been able to pass the variable to Javascript simply by calling it. One of the comments at DevShed said:
"... you probably won't be able to use {vb: raw criteriaDisplay} to determine the number that needs to go there. You need to have this number available before the template is rendered ..."
So, how can I make {vb: raw criteriaDisplay} available to a Javascript on the page, before the template is rendered?
Thanx
I don't understand the quote in your post. If the number appears in the page then it's available before the template is rendered (unless you're talking about a different template?).
In any case, have you tried putting this in the template?
<script type="text/javascript">
var criteriaDisplay = "{vb:raw criteriaDisplay}";
</script>
TWood
05-31-2011, 02:11 AM
Thanks kh99 -
Adding that script yields this in View Source:
<script type="text/javascript">
var criteriaDisplay = "";
</script>
Which is the same problem in the main Javascript, it's just not seeing the variable. There should be a number there between the quotes that matches the number that is shown on the page where I have <p>{vb:raw criteriaDisplay}</p>. It calls the variable fine outside of Javascript.
Regarding the quote, yes it's the same page/template.
Hmm...that's strange - it works for me. I had this set up to test soimething else:
In a plugin at global_start
$criteriaDisplay = 5;
vB_Template::preRegister('header',array('criteriaD isplay' => $criteriaDisplay));
then in the header template:
<script type="text/javascript">
var criteriaDisplay = "{vb:raw criteriaDisplay}";
</script>
and in the html source:
<script type="text/javascript">
var criteriaDisplay = "5";
</script>
ETA: I have version 4.1.3, maybe there was some problem before that version.
TWood
05-31-2011, 02:35 AM
Weird... I'm also using 4.1.3
Would it be okay to create a plugin that had just this part at global_start:
vB_Template::preRegister('header',array('criteriaD isplay' => $criteriaDisplay));
I actually have the Javascript in headinclude, if that makes any difference. So the plugin would be:
vB_Template::preRegister('headinclude',array('crit eriaDisplay' => $criteriaDisplay));
Yeah, that should be OK. But if it's coming out in the <p>{vb:raw criteriaDisplay}</p> in the same template (headinclude) then whatever you're doing must already be makign the variable available. (if you're putting that in a different template then the problem might be that $criteriaDisplay isn't set yet when header is rendered).
I just noticed that there's already a bunch of js vars defined the same way in headinclude, so I don't know why yours wouldn't work the same way.
TWood
05-31-2011, 02:57 AM
My bad, actually the <p>{vb:raw criteriaDisplay}</p> is in the searchresult_list template, which comes after the header info. So by then it's available. I'll try the plugin.
Ah...that's probably it. But the plugin won't help unless the $criteriaDisplay variable has a value set (not just preregistered) before the header is rendered. That might be what the DevShed person was trying to get at. You might have to juggle things around to get it to work out.
TWood
05-31-2011, 03:05 AM
Yeah, no go on the plugin. I'll try moving the Javascript for the ads to the searchresult_list template. I know they want it in the header so it's global, but it just won't do it.
--------------- Added 1306815435 at 1306815435 ---------------
Success!
Moving the ad code down to the searchresult_list template is all it needed.
kh99 - Thank you for your help!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.