Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. /* Load Modal-Nivo slider */
  2. $(function ($) {
  3. // Load dialog on page load
  4. //$('#basic-modal-content').modal();
  5.  
  6. // Load dialog on click
  7. $('.basic').click(function (e) {
  8. var src = "nivo/demo.html";
  9. $.modal('<iframe src="' + src + '" height="330" width="830" style="border:0">', {
  10. closeHTML:"",
  11. containerCss:{
  12. height:330,
  13. padding:0,
  14. width:830
  15. },
  16. overlayClose:true
  17. });
  18. return false;
  19. });
  20. });
  21.  
  22. #simplemodal-overlay {
  23. background-color: #000;
  24. cursor: wait;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement