Posted on: 1/10/2014 4:21:14 AM | Views : 813

I'm having one cshtml page( product.cshtml) it has the following div tags.I want to use product.cshtml div tags in another cshtml page(cart.cshtml) .that (cart.cshtml)page has jquery.i want to use the product.cshtml page div tag in that jquery function.like username has passed to another page.in the same way i want to pass div tag value to another page.is it possible?
product.cshtml
<div class="gallery"> <div class="picture">  
jquery (Cart.cshtml)
var a=$(this).next().find('img').attr('but') ;//instead of button i want to add gallery here is it possible?

Go to the complete details ...