Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(window).load(function(){
- /* class operation */
- $('.insNome').hide();
- $('.res').hide();
- $('.optG').hide();
- /* */
- $('.c').keyup(function(e){
- var num = $(this).val();
- var v = 200;
- if(num.length == "200"){
- $('.c').attr('maxlength', 200);
- $('.count').html(v - num.length);
- }else{
- $('.count').html(v - num.length);
- }
- });
- $('.anon').click(function(){
- $('.insNome').toggle();
- });
- $('.insNome').keyup(function(e){
- $('.insNome').attr('maxlength', 25);
- if(e.keyCode == 13){
- var nome = $(this).val();
- if(nome == ""){
- $('.insNome').attr("placeholder", "Digite um nome");
- }else if(nome.length <= 5){
- $('.insNome').val("");
- $('.insNome').attr("placeholder", "Nome pequeno");
- }else{
- nome = nome.replace(',','').replace(/,+$/, "");
- nome = nome.replace('-','').replace(/,+$/, "");
- nome = nome.replace('_','').replace(/,+$/, "");
- nome = nome.replace('!','').replace(/,+$/, "");
- $('.nome').html(nome);
- $('.insNome').val("");
- }
- }
- });
- $('.opt').click(function(){
- $('.optG').toggle();
- });
- $(".fancybox").fancybox();
- $(".fancybox").fancybox({
- helpers : {
- overlay : {
- css : {
- 'background' : 'rgba(18, 8, 8, 0.85)'
- }
- }
- }
- });
- $(".fancybox").fancybox({
- beforeShow : function() {
- var alt = this.element.find('img').attr('alt');
- this.inner.find('img').attr('alt', alt);
- this.title = alt;
- }
- });
- $(".fancybox")
- .attr('rel', 'gallery')
- .fancybox({
- padding : 0
- });
- var url = $('.redir').html();
- if(url){
- location.href=url;
- }else{
- //
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement