Jump to content
  • 0

Открыть-Скрыть блок


RodgerFox
 Share

Question

Подскажите пожалуйста, как сделать, что бы при клике на ссылку открывался скрытый блок. При нажатии на кнопку, текст в ней менялся на другой и при нажатии на ссылку или вне этого блока, блок который раскрылся опять скрылся.

Я не очень хорошо разбираюсь в этом и часть с нажатием вне блока, который раскрылся, совсем не понятен мне( в плане как реализовать). Большое спасибо заранее.

Пример, как на фриланс.ру поле авторизации

решение:

(function($, window) {
$.fn.loginPopup = function($popup) {
var $self = this,
$window = $(window);

return this.toggle(
function() {
$popup.stop(true,true).fadeIn(300).bind('click.bLogin', function(event){
// предотвращаем всплытие события,
// т.е. не даем закрыться попапу(см.ниже)
event.stopPropagation();
});
// скрываем попап если:
$window.bind('click.bLogin', function(){
// до window "прошел" click
$self.trigger('click');
}).bind('keydown.bLogin', function(event){
// нажали Escape
if(event.keyCode === 27){
$self.trigger('click')
}
});
return false;
},
function(){
// прячем попап
$popup.fadeOut(300).unbind('.bLogin');
$window.unbind('.bLogin');
return false;
}
);
};
})(jQuery, window);

Инициализация плагина:

$(document).ready(function(){

$('#togglePopup').loginPopup($('#popup'));

});

Подскажите как с ним сделать, что бы при нажатии на ссылку, текст ссылки менялся?

Edited by RodgerFox
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy