Through use of jQuery I arrive at a number (id of a specific widget on my page).
The variable that holds this number is active_widget_id
.
What I need to do is:
- make use of this number as in the following:
<?php $toggleImage = $text_widgets[active_widget_id]['toggle']; ?>
get the resulting $toggleImage value (it is the name of a file, like 'big-widget-header.gif')
And display the image in a div (say #toggleHolder) on the page.
The trouble is with a) the jQuery needing to run at document.ready to get the number, b) and once I am able to construct "$text_widgets[active_widget_id]['toggle'];", not being able to run the php code (wrapping it with php echo tags doesn't work, it just lists the above, not its result.)
I am more of a designer and I am trying to go with appends, prepends, html() and such but I suspect I should look at an ajax type of solution.
Any pointers appreciated...