pop-ups

We encourage users to post events happening in the community to the community events group on https://www.drupal.org.
dickinzon's picture

popup se desactiva cuando la pagina se carga via ajax por jquery

Saludes,

Utilizo "Popups API (Ajax Dialogs)" http://drupal.org/project/popups para mostrar dialogos, funciona muy bien para mi, pero tengo funciones en jquery que cargan algunos divs del contenido de la pagina para no actulizarla toda, en esas partes que se actualizan quedas desactivados la opcion de popup de los links.

el JS codigo que utilizo es algo asi:


$('.icons .entregado').livequery('click',function()
{
var cid = $(this).attr('id');
$.get('estado/'+cid+'/entregado', function()
{
$('.rows').load('../'+$('.current').attr('id')+' .rows');
});
return false;

Read more
lorlarz2's picture

Want to add Easy pop-up 'tooltips' on Any Page?

Easiest way to have pop-up "tooltips" ANYWHERE.
Procedure to do it:

  • Find the Drupal folder with your theme's .info file and
    add stylesheets[all][] = mytooltip.css (under other similar lines)
  • In Notepad (or any raw text editor) make the following file :

    span.tooltip span
    {
    

    display:none;
    }
    span.tooltip:hover span
    {
    display:inline;
    position:absolute;
    background:#FFFF99;
    border:1px solid silver;
    color:maroon;
    width:200px;
    margin-top:20px;
    margin-left:-5px;
    font-size:smaller;
    line-height:1em;

Read more
Subscribe with RSS Syndicate content