Response title
This is preview!
function removeBranch(bID) {var k = $("[pID='" + bID + "'][isparent]");if (k.length > 0) {$.each(k, function (i,o) {removeBranch(o.id);});} else {$("[pID='" + bID + "']").remove();//removeBranch(bID);//return;}}
}).attr("src", fName);$(this).appendTo("#imgDIV");
- FB.login(function (response) {
- console.log('Welcome! Fetching your information.... ');
- if (response.authResponse) {
- FB.api('/me', function (response) {
- console.log('Good to see you, ' + response.name + '.');
- });
- } else {
- console.log('User cancelled login or did not fully authorize.');
- }
- }, { scope: 'email, public_profile' });
$(function () { $('#testButton1').click(function () { var d = $("<div />") .css({ width: 200, height: 200 }) .html("Testing dialog <input type='text' id='idd' >").dialog({ modal: true, width: 200, height: 100, autoOpen: false, buttons: { "Ok": function () { }, "Cancel": function () { $(this).dialog("close"); } }, open: function () { $('#idd').attr("title", "Title goes here"); } }); d.dialog("open"); }); });
#bodyDIV { position: absolute; width: 80%; height: 80%; bottom: 10%; left: 10%; background-color: #808080; border-radius:3px; }
I use the following code to load image
$(img).load(function () {
$(img).addClass("itmImgClass");
}).attr("src", itemData.begedurl);
How can I remove the width and height attributes from the resulting image markup ?
$('#dlg').dialog({ open: function () { }, width: 800, height: 500, title: 'Test', //json[0] modal: false });
$('#slideshow1').cycle( { fx: 'curtainX', easing: 'easeOutBack', delay: -4000, next: '#Button1Next', prev: '#Button1Prev', before: getCurrent });
function getCurrent(currSlideElement, nextSlideElement, options, forwardFlag) { currSlideID = currSlideElement.id; //alert(currSlideElement.id); }
© 2013 jQuery Foundation
Sponsored by and others.