Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a problem with jquery ui dialog and iframe within safari browser in my application (it only happen in safari browser, where as IE, Mozilla, and Chrome have no issue)

I have total 3 jsp pages in my application:

  1. Parent Page - let's called this index.jsp
  2. Inside my parent page, there is an Iframe that loads the content dynamically from iframe.jsp
  3. Jquery dialog page that loads upon clicking the item inside iframe.jsp - let's called this jquerydialog.jsp

Basically in my parent page (index.jsp), I have iframe in which its contents are dynamically generated from iframe.jsp and when i click on item inside iframe.jsp, it will open jquery dialog from parent page and load jquerydialog.jsp.

This is the code in my parent page (index.jsp), in which it will trigger jquery dialog:

 <script type="text/javascript" src="js/jquery-1.8.1.min.js"></script>
 <script type="text/javascript" src="js/jquery-ui-1.9.0.custom.min.js"></script>
 <script>
 function addToCart(obj) {

   var $dialogItem = $('<div></div>').dialog({
    autoOpen: false,
    resizable: false,
    width:550,
    height:320,
    modal:true
  });

  $(function() {
    $dialogItem.load("jquerydialog.jsp?obj="+obj, function(){
        $(this).dialog('open');
    });
  });
}
</script>

This is the code in iframe.jsp, which will call addToCart function from index.jsp

<script type="text/javascript" src="js/jquery-1.8.1.min.js"></script>
<script type="text/javascript">

function init(){
    $(".linkToCart").live("click", function(event) {
        event.preventDefault();
        window.parent.addToCart(this.id); 
    });
}

$(document).ready(init);
</script>

And below is the code in my jquerydialog.jsp

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript">

    $(function(){
         alert("test"); // DOES not get triggered in safari
         $("#btn_addCart").click(function(event) {
            event.preventDefault();
        alert("after click"); // DOES not get triggered in safari
          });
    });

  </script>

</head>
   <body>
     ....
      <input type="button" id="btn_addCart" value="click me" />
     ....
   </body>
   </html>

My problem is that the above codes in jquerydialog.jsp does not get triggered in safari but got no issue in IE and Firefox. The jquery dialog got loaded but the alert(test) message or button click does not get fired.

And is it customary to add (since parent already have this)

<script type="text/javascript" src="js/jquery-1.8.1.min.js"></script>

in jquerydialog.jsp (Tried this, but IE will throw a javascript error).

Any insights will be much appreciated. Thanks!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.