I'm working on a JavaScript/jQuery draggable widget manager. Currently, this is working great on manually moving the containers and saving the sort value to a DB (via PHP). I'm putting this together for a simple way to position various ad zones for a client.
The problem is now, when I'm trying to move my zones, jQuery breaks down when there is JavaScript ad code within the zone. The point of failure is when I'm trying to select the class container to get the id of the zone.
var items=[];
$('.column').each(function(){
var columnId=$(this).attr('id');
$('.dragbox', this).each(function(i){
var item={
id: $(this).attr('id'),
collapsed: 0,
order : i,
column: columnId
};
//Push item object into items array
items.push(item);
});
});
After creating this array, it's passed via JSON to my update script. The problem is that nothing is getting created into the array when I have ad server code. Here is the example of what it would look like (HTML)
<div class="dragbox" id="item1">
<h2><span class="configure" ><a href="#" >Configure</a></span>Handle 1</h2>
<div class="dragbox-content" >
<!-- Panel Content Here -->
<script type='text/javascript'><!--//<![CDATA[
var m3_u = (location.protocol=='https:'?'https://ads.mytestsite.com/_ads/delivery/ajs.php':'http://ads.mytestsite.com/_ads/delivery/ajs.php');
var m3_r = Math.floor(Math.random()*99999999999);
if (!document.MAX_used) document.MAX_used = ',';
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("?zoneid=24");
document.write ('&cb=' + m3_r);
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
document.write ("&loc=" + escape(window.location));
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
if (document.context) document.write ("&context=" + escape(document.context));
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("'><\/scr"+"ipt>");
//]]>--></script><noscript><a href='http://ads.mytestsite.com/_ads/delivery/ck.php?n=a7d957c0&cb=&n=a7d957c0' border='0' alt='' /></a></noscript>
</div>
</div>
If I remove the '<script type='text/javascript'>'
things seem to work better. I've done some testing with < / > ' " ! -- [
chars and those all seem to be fine.
As you can see, I'm only trying to grab the id of the class container and pass that to JSON, but the content is within this container, and I think it's borking things up. I also tested with Error Console in Firefox and it's not reporting any errors.
Any suggestions are greatly appreciated!
hanji