AD
Standard method to include jQuery in your wordpress site
add_action('init', 'myplugin_load');
function myplugin_load(){
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'jquery-ui-core' );
wp_enqueue_script( 'jquery-ui-dialog' );
}
For styling
wp_enqueue_style("wp-jquery-ui-dialog");
For Add dialog
JS:
var dlg = $("<div id='myFancyDialog' />")
.text('content')
.appendTo("body");
dlg.dialog({
'dialogClass' : 'wp-dialog',
'modal' : true,
'autoOpen' : false,
'closeOnEscape' : true,
'buttons' : [
{
'text' : 'Close',
'class' : 'button-primary',
'click' : function() {
$(this).dialog('close');
}
}
]
}).dialog('open');
A blogger
I am passionate blogger cum B.Tech. Computer engineering graduate. I love writing blog post. I spend my free time in writing blog post that will useful to everyone (including me). I have had some success making money blogging and want to help others do the same. I just figured that by creating a great and free resource a lot of links would follow – and they have. Some people ask me how they can repay me – which is not necessary - but for those wanting to show their appreciation, I just say linking to the article from their blog is the best compensation I could receive. Thanks for reading!
0 comments:
Post a Comment
Thanks for commenting. I will Reply you soon