object, param, jquery - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T13:45:45Zhttp://stackoverflow.com/feeds/question/1081656http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081656/object-param-jquery0object, param, jqueryAlexander Corotchi2009-07-04T06:29:42Z2009-07-04T21:41:29Z
<pre><code><object width="438" height="280" id="pano" >
<param value="url_flash" name="movie" />
<param value="false" name="menu"/>
<param value="high" name="quality"/>
<param value="#FFFFFF" name="bgcolor"/>
<embed width="438" height="280" pluginpage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="pano" bgcolor="#FFFFFF" quality="high" menu="false" src="url_flash"/>
</object>
</code></pre>
<p>I have this flash code, what I want is that when I click some buttons to change with jquery <code><embed src=''></code> (for firefox) and the first <code><param></code> (for IE)</p>
<p>How I can do that?</p>
<p>This works for embed but how I can do for param in IE ?</p>
<pre><code>$('.link a').click(function() {
var urlconst = 'changed_url';
$(".flash_photo embed").attr({
src: changed_url
});
</code></pre>
<p>I tried </p>
<pre><code>$('#pano param:first').val(changed_url)
</code></pre>
<p>But that doesn't work.</p>
http://stackoverflow.com/questions/1081656/object-param-jquery/1081677#10816772Answer by SolutionYogi for object, param, jquerySolutionYogi2009-07-04T06:40:21Z2009-07-04T06:40:21Z<p>Have you considered using jQuery SWFObject plugin? </p>
<p><a href="http://jquery.thewikies.com/swfobject/" rel="nofollow">http://jquery.thewikies.com/swfobject/</a></p>
http://stackoverflow.com/questions/1081656/object-param-jquery/1081773#10817730Answer by Guffa for object, param, jqueryGuffa2009-07-04T08:03:57Z2009-07-04T08:03:57Z<p>You should use the name of the variable where you have put the url:</p>
<pre><code>$('#pano param:first').val(urlconst)
</code></pre>
http://stackoverflow.com/questions/1081656/object-param-jquery/1081783#10817832Answer by Rojo for object, param, jqueryRojo2009-07-04T08:15:56Z2009-07-04T10:19:29Z<p>EDIT</p>
<p>The behavior I described below only takes place in IE in particular situations. When the object element was present in the loaded DOM, I could update the value for the param element named movie, but the state of the object didn't change. And the object can't be easily refreshed as far as I know. It looks like the best way is to remove the object element and add a fresh one. For that, it seems like the SWFObject jQuery plugin that SolutionYogi suggests, or something similar, might indeed be the best way to go.</p>
<p>ORIGINAL</p>
<p>From what I see when I try this out in IE8, IE retains only the embed elements as the page is loaded, not the object and param elements. So you can't change that value of the param because it no longer exists.</p>
<p>So if this gets served:</p>
<pre><code><object width="425" height="344">
<param name="movie"
value="http://www.youtube.com/v/ePXlkqkFH6s&hl=en&fs=1&"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.youtube.com/v/ePXlkqkFH6s&hl=en&fs=1&"
type="application/x-shockwave-flash"
allowscriptaccess="always"
allowfullscreen="true"
width="425" height="344"></embed>
</object>
</code></pre>
<p>It becomes only this in the IE DOM:</p>
<pre><code><embed src="http://www.youtube.com/v/ePXlkqkFH6s&hl=en&fs=1&"
type="application/x-shockwave-flash"
allowscriptaccess="always"
allowfullscreen="true"
width="425" height="344"></embed>
</code></pre>
<p>To get a movie to update in IE, I had to cause IE to reparse the HTML for embed. The following seemed to work:</p>
<pre><code>var placeHolder = $("<div />");
var tempParent = $("<div />");
var embed = $("#movieparent embed");
embed.replaceWith(placeHolder);
tempParent.append(embed);
embed.attr("src", newSrcUrl);
placeHolder.replaceWith(tempParent.html());
</code></pre>
http://stackoverflow.com/questions/1081656/object-param-jquery/1083023#10830231Answer by thezachperson31 for object, param, jquerythezachperson312009-07-04T21:41:29Z2009-07-04T21:41:29Z<p>After searching for info, it seems you cannot dynamically change the param element's attributes dynamically. The simplest way will probably be to pull the element's HTML into a variable, feed that back into jQuery, and use CSS selectors on that. Then you could clear the object and replace it with the new code. </p>
<pre><code>var url = (url here);
var code = $("#embedded").html();
var newcode = $("param:first", code).attr("src", url).html();
$("#embedded").html(newcode);
</code></pre>
<p>or something like that... ;)</p>