Jump to content

Using Jquery each() to veiw individual divs (modals)


son.of.the.morning

Recommended Posts

I am trying to create a each() function to view individual modals in a php while loop.

 

open modal

<script type='text/javascript'>
jQuery(function ($) {
$('.basic').click(function (e) {
	$('#basic-modal-content').modal();

	return false;
});
});
</script>

I tried this but it's not working (.record_i looped div container holding the hidden Div (modal) )

<script type='text/javascript'>


	$('.Record_i').each(function() {
		var obj_modal = $(this);
		jQuery(function ($) {
			$('.basic',obj_modal).click(function (e) {
				$('#basic-modal-content',obj_modal).modal();

				return false;
			});
		});
	});


</script>

 

Any ideas?

Link to comment
Share on other sites

I got on to that a few moments ago and tried the code below... but it still ante having non of it i cant see were am going wrong at all

 

jQuery(function ($) {
$('.basic').each(function() {
	var obj_click = $(this);
	$('.basic',obj_click).click(function (e) {
		$('#basic-modal-content').each(function() {
			var modal = $(this);
			$('#basic-modal-content',modal).modal();

			return false;
		});
	});
});
});

Link to comment
Share on other sites

So then do this:

$(document).ready(function(){
$('.basic').click(function(e){
                e.preventDefault();

	$(this).children('div.hidden').modal();
});
});

<style type="text/css">.hidden { display:none; }</style>

<a class="basic">
  <div class="hidden">Lorem Ipsum</div>
</a>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.