- Messages
- 1,682
- Reaction score
- 32
- Points
- 48
So everyone that has a Facebook knows that there is a feature where you can hide content from 'non-members' of a group/fan page. I, if not many, have found a way to bypass this. Since Facebook does not actually keep the content away from 'non-members' rather it just hides the content with some cheap styling.
so I just use FireBug and delete that attribute so I dont actually have to join the group.
Now opening FireBug each time and looking for the content is not a hassle but can be simplified. I was thinking of javascript and changing the style to visible.
but then the span tags do not always have an id or class attached to define them. so i came across this.
http://robertnyman.com/2006/01/23/monday-code-giveaway-getelementsbyattribute/
which basically allows you to search by attribute and its properties.
the only problem is. I cant get the javascript to work properly. anybody know what im doing wrong.
i would post up the code i was working with, but it might just confuse you all, because i did a ****ty job.
here is the template for most of these pages
Code:
visibility:hidden;
Now opening FireBug each time and looking for the content is not a hassle but can be simplified. I was thinking of javascript and changing the style to visible.
Code:
document.*.style.visibility = "visible";
but then the span tags do not always have an id or class attached to define them. so i came across this.
http://robertnyman.com/2006/01/23/monday-code-giveaway-getelementsbyattribute/
which basically allows you to search by attribute and its properties.
the only problem is. I cant get the javascript to work properly. anybody know what im doing wrong.
i would post up the code i was working with, but it might just confuse you all, because i did a ****ty job.
here is the template for most of these pages
Code:
<div style="position: relative; overflow: hidden;">
<span style="background: none repeat scroll 0% 0% white;">
Un-Hiden Content
<span style="visibility: hidden;">
/*********
* Hidden Content
*********/
</span>
<span style="visibility: visible;"></span>
</span>
</div>
Last edited: