Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~378 People Reached
Favorite Tags
Member Avatar for samith.dilhara

how to keep same tab highlighting after refreshing the page(page is refreshed after the paging link clicked.) <script type="text/javascript"> /**this is for tab highliting*/ $(document).ready(function(){ var str=location.href.toLowerCase(); $(".navigation li a").each(function() { if (str.indexOf(this.href.toLowerCase()) > -1 ) { $("li.highlight").removeClass("highlight"); $(this).parent().addClass("highlight"); } }); }) /**this is for paging highliting*/ $(document).ready(function(){ var str=location.href.toLowerCase(); …

Member Avatar for LastMitch
0
135
Member Avatar for samith.dilhara

<style name="Theme.Custom" parent="android:Theme"> <item name="android:windowBackground">@drawable/progress_clip_drawable</item> <item name="android:windowNoTitle">true</item> </style> if I use image drawable it works but if I use clip or shape drawable it want please help suggest solution

Member Avatar for JorgeM
0
54
Member Avatar for samith.dilhara

here is the code <div id="test"> <input type="text" name="textfield" /> <div> `$('div#test').html()` render like this along with endtag for `/>` <input type="text" name="textfield" ></input> how can i render it like below <input type="text" name="textfield" /> thanks in advance..!!

Member Avatar for Airshow
0
189