 |
Fanybox ให้เปิดภายใน function ครับ โดยไม่ได้คลิกจากปุ่มหรือลิ้งค์ครับ |
|
 |
|
|
 |
 |
|
$(document).ready(function ()
{
function myfunction()
{
// note the use of "this" rather than a function argument
$(this).fancybox({
'autoScale': true,
'transitionIn': 'elastic',
'transitionOut': 'elastic',
'speedIn': 500,
'speedOut': 300,
'autoDimensions': true,
'centerOnScroll': true
})
}
});
|
 |
 |
 |
 |
Date :
2014-01-10 15:43:36 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อีกวิธีหนึ่งครับ
Code (JavaScript)
function openEditor(element,sid,pid,gid){
var $element = $(element);
var dataString = '??';
var ajaxSettings = {
type : "POST",
data : dataString
};
$element.fancybox({
'width' : 1000,
'height' : 600,
'autoDimensions' : false,
'autoScale' : false,
'ajax' : ajaxSettings
});
$element.trigger('click');
return false;
}
<a href="javascript:void(0);" onclick="openEditor(this,'some','other','params')">text</a>
|
 |
 |
 |
 |
Date :
2014-01-10 16:26:10 |
By :
mr.win |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|